Skip to content

Commit

Permalink
Merge pull request #2712 from reubenmiller/default-log-memory-interval
Browse files Browse the repository at this point in the history
fix: disable memory logging by default to avoid log spamming
  • Loading branch information
reubenmiller authored Feb 14, 2024
2 parents 6b1d832 + aecec18 commit 3389918
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ define_tedge_config! {
#[tedge_config(example = "true", default(value = true))]
lock_files: bool,

/// Interval at which the memory usage is logged (in seconds)
#[tedge_config(example = "60", default(value = 300_u64))]
/// Interval at which the memory usage is logged (in seconds). Logging is disabled if set to 0
#[tedge_config(example = "60", default(value = 0_u64))]
log_memory_interval: Seconds,
},

Expand Down

0 comments on commit 3389918

Please sign in to comment.