Skip to content

Commit

Permalink
Set logging to INFO when generated temporarily
Browse files Browse the repository at this point in the history
I'm not super happy about this, but we have 40 somthing routers in
Colombia that are going to come online needing monitoring and because
we use a pull instead of a push arch for updates this is going to control
what their routers do by default.

Current stats harvested from exits let me talk to everyone currently running
Rita and let them know that this will flip on during update so YOLO I guess.
  • Loading branch information
jkilpatr committed Oct 15, 2018
1 parent 088b089 commit ad4d260
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions settings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,14 @@ impl Default for NetworkSettings {
}
}

// TODO change to false in alpha 11
fn default_logging() -> bool {
false
true
}

// TODO change to warn in alpha 11
fn default_logging_level() -> String {
"ERROR".to_string()
"INFO".to_string()
}

fn default_logging_send_port() -> u16 {
Expand Down

0 comments on commit ad4d260

Please sign in to comment.