Skip to content

Commit 752a689

Browse files
committed
Model discovery is now verbose logging
1 parent 67288a0 commit 752a689

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/model_manager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ void ModelManager::scanDirectoryInternal(const std::string& directory, ModelType
149149
ModelInfo info(lookup_name, full_path, type, file_size);
150150
found_models.push_back(info);
151151

152-
LOG_DEBUG("Found %s model: %s (%zu bytes)", getModelTypeString(type).c_str(), lookup_name.c_str(),
153-
file_size);
152+
LOG_VERBOSE("Found %s model: %s (%zu bytes)", getModelTypeString(type).c_str(), lookup_name.c_str(),
153+
file_size);
154154
}
155155
} catch (const fs::filesystem_error& e) {
156156
LOG_ERROR("Error scanning directory %s: %s", directory.c_str(), e.what());

0 commit comments

Comments
 (0)