Index: kernel/generic/include/debug.h
===================================================================
--- kernel/generic/include/debug.h	(revision 8af9950eef9c2c7dfd3ef398eb581435b1f15ac1)
+++ kernel/generic/include/debug.h	(revision 27e291609fe207cd6350a016713df0c547720247)
@@ -64,7 +64,7 @@
 #endif
 
-/** Extensive debugging output macro
+/** Extensive logging output macro
  *
- * If CONFIG_EDEBUG is set, the LOG() macro
+ * If CONFIG_LOG is set, the LOG() macro
  * will print whatever message is indicated plus
  * an information about the location.
@@ -72,5 +72,5 @@
  */
 
-#ifdef CONFIG_EDEBUG
+#ifdef CONFIG_LOG
 #	define LOG(format, ...) \
 		printf("%s() at %s:%u: " format "\n", __func__, __FILE__, \
@@ -80,7 +80,7 @@
 #endif
 
-/** Extensive debugging execute macro
+/** Extensive logging execute macro
  *
- * If CONFIG_EDEBUG is set, the LOG_EXEC() macro
+ * If CONFIG_LOG is set, the LOG_EXEC() macro
  * will print an information about calling a given
  * function and call it.
@@ -88,5 +88,5 @@
  */
 
-#ifdef CONFIG_EDEBUG
+#ifdef CONFIG_LOG
 #	define LOG_EXEC(fnc) \
 		{ \
