Skip to content

Commit

Permalink
Remove spurious daemon message on plugin load.
Browse files Browse the repository at this point in the history
The plugin loading like to be somewhat chatty by issueing
daemon messages for every plugin loaded. Its more then enough
to issue this as a debugging message what was already done.
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 814392b commit 8d51889
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/dird/dir_plugins.c
Expand Up @@ -222,7 +222,6 @@ void load_dir_plugins(const char *plugin_dir, const char *plugin_names)
* about it.
*/
foreach_alist_index(i, plugin, dird_plugin_list) {
Jmsg(NULL, M_INFO, 0, _("Loaded plugin: %s\n"), plugin->file);
Dmsg1(dbglvl, "Loaded plugin: %s\n", plugin->file);
}

Expand Down
1 change: 0 additions & 1 deletion src/filed/fd_plugins.c
Expand Up @@ -1189,7 +1189,6 @@ void load_fd_plugins(const char *plugin_dir, const char *plugin_names)
* Verify that the plugin is acceptable, and print information about it.
*/
foreach_alist_index(i, plugin, fd_plugin_list) {
Jmsg(NULL, M_INFO, 0, _("Loaded plugin: %s\n"), plugin->file);
Dmsg1(dbglvl, "Loaded plugin: %s\n", plugin->file);
}

Expand Down
1 change: 0 additions & 1 deletion src/stored/sd_plugins.c
Expand Up @@ -327,7 +327,6 @@ void load_sd_plugins(const char *plugin_dir, const char *plugin_names)
* Verify that the plugin is acceptable, and print information about it.
*/
foreach_alist_index(i, plugin, sd_plugin_list) {
Jmsg(NULL, M_INFO, 0, _("Loaded plugin: %s\n"), plugin->file);
Dmsg1(dbglvl, "Loaded plugin: %s\n", plugin->file);
}

Expand Down

0 comments on commit 8d51889

Please sign in to comment.