We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb69d7c commit f360807Copy full SHA for f360807
logging/logging.go
@@ -13,6 +13,9 @@ import (
13
"go.viam.com/utils"
14
)
15
16
+// Environment variable to control whether noisy logs are de-deduplicated. Set
17
+// to "false" to turn off de-duplicating logic; de-duplication logic is enabled
18
+// by default.
19
const dedupNoisyLogsEnvVar = "VIAM_DEDUP_LOGS"
20
21
var (
@@ -26,7 +29,7 @@ var (
26
29
// Whether to de-duplicate noisy logs; obtained from value of
27
30
// `dedupNoisyLogsEnvVar` and defaults to true. Export env var to "false" to
28
31
// turn off de-duplicating logic.
- dedupNoisyLogs = false
32
+ dedupNoisyLogs = true
33
34
35
func init() {
0 commit comments