Skip to content

Commit

Permalink
chore(k8smeta): adjust logging level
Browse files Browse the repository at this point in the history
Signed-off-by: Aldo Lacuku <[email protected]>
  • Loading branch information
alacuku committed Nov 7, 2024
1 parent 8aeeaa5 commit 4c65346
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugins/k8smeta/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,19 +371,19 @@ void my_plugin::do_initial_proc_scan()
}
catch(const std::filesystem::filesystem_error& err)
{
SPDLOG_ERROR("cannot iter over '{}' for initial proc scan: "
"{}. It could happen that some process "
"entries disappear between iterations",
task_dir, err.what());
SPDLOG_WARN("cannot iter over '{}' for initial proc scan: "
"{}. It could happen that some process "
"entries disappear between iterations",
task_dir, err.what());
}
}
}
catch(const std::filesystem::filesystem_error& err)
{
SPDLOG_ERROR("cannot iter over '{}' for initial proc scan: {}. It "
"could happen that some process entries disappear "
"between iterations",
task_dir, err.what());
SPDLOG_WARN("cannot iter over '{}' for initial proc scan: {}. It "
"could happen that some process entries disappear "
"between iterations",
task_dir, err.what());
}
}
SPDLOG_INFO(
Expand Down

0 comments on commit 4c65346

Please sign in to comment.