Browse Source

Use debug log for missing value

Jonas Bleyl 7 years ago
parent
commit
946bbc27e5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      OhmGraphite/MetricTimer.cs

+ 2 - 2
OhmGraphite/MetricTimer.cs

@@ -1,4 +1,4 @@
-using System;
+using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics;
 using System.IO;
 using System.IO;
@@ -138,7 +138,7 @@ namespace OhmGraphite
                 }
                 }
                 else
                 else
                 {
                 {
-                    Logger.Warn($"{id} did not have a value");
+                    Logger.Debug($"{id} did not have a value");
                 }
                 }
             }
             }
         }
         }