From 5835a06676af97ff19e756ae7ffee5370a1d0b3f Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Fri, 22 Mar 2013 20:00:40 +0100 Subject: [PATCH] Removed redundant debug printf. --- src/core/plugincallback.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/plugincallback.c b/src/core/plugincallback.c index ed7e1f4..19135d0 100644 --- a/src/core/plugincallback.c +++ b/src/core/plugincallback.c @@ -101,7 +101,6 @@ static int cbfunc_command_add(struct plugin_handle* plugin, struct plugin_comman cmdh->internal_handle = command; list_append(data->commands, cmdh); command_add(plugin_get_hub(plugin)->commands, command, (void*) plugin); - printf("*** Add plugin command: %s (%p, %p)\n", command->prefix, command, cmdh); return 0; } @@ -110,7 +109,6 @@ static int cbfunc_command_del(struct plugin_handle* plugin, struct plugin_comman struct plugin_callback_data* data = get_callback_data(plugin); struct command_handle* command = (struct command_handle*) cmdh->internal_handle; - printf("*** Del plugin command: %s (%p, %p)\n", command->prefix, command, cmdh); list_remove(data->commands, cmdh); command_del(plugin_get_hub(plugin)->commands, command); hub_free(command);