diff --git a/src/services/meta_service.rs b/src/services/meta_service.rs index 8b7a7d3..f044a6d 100644 --- a/src/services/meta_service.rs +++ b/src/services/meta_service.rs @@ -106,15 +106,15 @@ impl MetaService { // Print warnings for duplicate output names for (output_name, plugin_names) in &output_names { if plugin_names.len() > 1 { - log::warn!("Output name '{}' is provided by multiple plugins: {}", - output_name, + log::warn!("META_SERVICE: Output name '{}' is provided by multiple plugins: {}", + output_name, plugin_names.join(", ")); } } for meta_plugin in plugins.iter_mut() { if let Err(e) = meta_plugin.initialize(conn, item_id) { - log::warn!("Failed to initialize meta plugin: {}", e); + log::warn!("META_SERVICE: Failed to initialize meta plugin: {}", e); } } }