From: Daniele Basile Date: Mon, 16 Jan 2012 17:42:20 +0000 (+0100) Subject: Fix wizard flag. X-Git-Url: https://codewiz.org/gitweb?p=bertos.git;a=commitdiff_plain;h=73263eca4f0a41d35deb3256c8cc894cfc907ff2 Fix wizard flag. --- diff --git a/bertos/cfg/cfg_syslog.h b/bertos/cfg/cfg_syslog.h index 69bc990c..5ee39c0f 100644 --- a/bertos/cfg/cfg_syslog.h +++ b/bertos/cfg/cfg_syslog.h @@ -41,19 +41,19 @@ /** * Enable the net logging. * - * $WIZ$ type = "bool" + * $WIZ$ type = "autoenabled" */ -#define CONFIG_SYSLOG_NET 1 +#define CONFIG_SYSLOG_NET 0 /** - * Enable the serial logging. + * Log also on serial. * - * $WIZ$ type = "bool" + * $WIZ$ type = "boolean" */ #define CONFIG_SYSLOG_SERIAL 1 /** - * Destination port of log messages + * Destination port of log messages. * * $WIZ$ type = "int" */ diff --git a/bertos/net/syslog.h b/bertos/net/syslog.h index 52e9b1e0..f95ea6b4 100644 --- a/bertos/net/syslog.h +++ b/bertos/net/syslog.h @@ -67,7 +67,7 @@ * * $WIZ$ module_name = "syslog" * $WIZ$ module_configuration = "bertos/cfg/cfg_syslog.h" - * $WIZ$ module_depends = "lwip", "kfile" + * $WIZ$ module_depends = "lwip", "debug" */ #ifndef NET_SYSLOG_H