File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
metrics/src/main/java/com/google/monitoring/metrics
stackdriver/src/main/java/com/google/monitoring/metrics/stackdriver Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ protected void run() throws Exception {
54
54
logger .info ("Started up MetricExporter" );
55
55
while (isRunning ()) {
56
56
Optional <ImmutableList <MetricPoint <?>>> batch = writeQueue .take ();
57
- logger .info ("Got a batch of points from the writeQueue" );
57
+ logger .fine ("Got a batch of points from the writeQueue" );
58
58
if (batch .isPresent ()) {
59
- logger .info ("Batch contains data, writing to MetricWriter" );
59
+ logger .fine ("Batch contains data, writing to MetricWriter" );
60
60
try {
61
61
for (MetricPoint <?> point : batch .get ()) {
62
62
writer .write (point );
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ public MetricReporter(
84
84
85
85
@ Override
86
86
protected void runOneIteration () {
87
- logger .info ("Running background metric push" );
87
+ logger .fine ("Running background metric push" );
88
88
89
89
if (metricExporter .state () == State .FAILED ) {
90
90
startMetricExporter ();
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ public void flush() throws IOException {
214
214
for (TimeSeries timeSeries : timeSeriesList ) {
215
215
pushedPoints .increment (timeSeries .getMetricKind (), timeSeries .getValueType ());
216
216
}
217
- logger .info (String .format ("Flushed %d metrics to Stackdriver" , timeSeriesList .size ()));
217
+ logger .fine (String .format ("Flushed %d metrics to Stackdriver" , timeSeriesList .size ()));
218
218
}
219
219
220
220
/**
You can’t perform that action at this time.
0 commit comments