Skip to content

Commit

Permalink
chore: change some warn logging to info (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid authored Sep 22, 2023
1 parent 2ea50ea commit 215c705
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl StacksDevnetApiK8sManager {

pub async fn check_namespace_exists(&self, namespace_str: &str) -> Result<bool, DevNetError> {
self.ctx.try_log(|logger| {
slog::warn!(
slog::info!(
logger,
"checking if namespace NAMESPACE: {}",
&namespace_str
Expand Down Expand Up @@ -296,7 +296,7 @@ impl StacksDevnetApiK8sManager {
namespace: &str,
) -> Result<bool, DevNetError> {
self.ctx.try_log(|logger| {
slog::warn!(
slog::info!(
logger,
"checking if any devnet assets exist for devnet NAMESPACE: {}",
&namespace
Expand Down Expand Up @@ -346,7 +346,7 @@ impl StacksDevnetApiK8sManager {
namespace: &str,
) -> Result<bool, DevNetError> {
self.ctx.try_log(|logger| {
slog::warn!(
slog::info!(
logger,
"checking if all devnet assets exist for devnet NAMESPACE: {}",
&namespace
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async fn handle_request(
};
if !exists {
let msg = format!("network {} does not exist", &network);
ctx.try_log(|logger| slog::warn!(logger, "{}", msg));
ctx.try_log(|logger| slog::info!(logger, "{}", msg));
return responder.err_not_found(msg);
}

Expand Down

0 comments on commit 215c705

Please sign in to comment.