Skip to content

Commit f360807

Browse files
committed
typo
1 parent bb69d7c commit f360807

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

logging/logging.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ import (
1313
"go.viam.com/utils"
1414
)
1515

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.
1619
const dedupNoisyLogsEnvVar = "VIAM_DEDUP_LOGS"
1720

1821
var (
@@ -26,7 +29,7 @@ var (
2629
// Whether to de-duplicate noisy logs; obtained from value of
2730
// `dedupNoisyLogsEnvVar` and defaults to true. Export env var to "false" to
2831
// turn off de-duplicating logic.
29-
dedupNoisyLogs = false
32+
dedupNoisyLogs = true
3033
)
3134

3235
func init() {

0 commit comments

Comments
 (0)