diff options
author | Carpenter, Adam (CORP) <adam.carpenter@adp.com> | 2021-12-10 11:20:23 -0500 |
---|---|---|
committer | Carpenter, Adam (CORP) <adam.carpenter@adp.com> | 2021-12-10 11:20:23 -0500 |
commit | ec2d2842c60b27f581bc2290cef90c467a9149d4 (patch) | |
tree | 9294e767f0c0a893f97295dfcc51b341eae65c21 /angelsharkd/src | |
parent | 5e63f0a5ac067630c2ca0d4d0face7f68058906b (diff) | |
download | altruistic-angelshark-ec2d2842c60b27f581bc2290cef90c467a9149d4.tar.xz altruistic-angelshark-ec2d2842c60b27f581bc2290cef90c467a9149d4.zip |
fix: only log necessary info
Diffstat (limited to 'angelsharkd/src')
-rw-r--r-- | angelsharkd/src/routes/extensions/simple_deprov.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/angelsharkd/src/routes/extensions/simple_deprov.rs b/angelsharkd/src/routes/extensions/simple_deprov.rs index 6e7ca71..fc734f3 100644 --- a/angelsharkd/src/routes/extensions/simple_deprov.rs +++ b/angelsharkd/src/routes/extensions/simple_deprov.rs @@ -51,7 +51,7 @@ async fn remove_entries(entries: Entries, mut runner: AcmRunner) -> Result<impl // Log errors for tracking. for error in &errors { - error!("deprov error: {}", error); + error!("{}", error); } Ok(reply::json(&errors)) |