Skip to content

Commit

Permalink
Demote warnings into debug messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkepic committed May 7, 2024
1 parent 10a2057 commit 8e54953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/embedded_python/src/embedded_python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ EmbeddedPython::EmbeddedPython(const JsonStore &jsn, EmbeddedPythonActor *parent
void EmbeddedPython::setup() {
try {
if (not Py_IsInitialized()) {
spdlog::info("py::initialize_interpreter");
spdlog::debug("py::initialize_interpreter");
py::initialize_interpreter();
inited_ = true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugin_manager/src/plugin_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PluginManager::PluginManager(std::list<std::string> plugin_paths)
size_t PluginManager::load_plugins() {
// scan for .so or .dll for each path.
size_t loaded = 0;
spdlog::warn("Loading Plugins");
spdlog::debug("Loading Plugins");

for (const auto &path : plugin_paths_) {
try {
Expand Down

0 comments on commit 8e54953

Please sign in to comment.