From 1cb4a8a202023958589d563ad132d701e27c008a Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Fri, 29 Aug 2014 13:39:23 +0200 Subject: changed default log color and some memtests --- lib/logger/log.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/logger/log.c b/lib/logger/log.c index 70337db..3a6606e 100644 --- a/lib/logger/log.c +++ b/lib/logger/log.c @@ -12,7 +12,8 @@ void log(char *module_name, int log_level, char *format_string, ...) PutConsole(": ",0b0000011111100000,0); va_list va; va_start(va,format_string); - PutConsole(format_string, 0b11111, va); + //PutConsole(format_string, 0b11111, va); // blue + PutConsole(format_string, 0b0111101111111111, va); va_end(va); PutConsoleNL(); -- cgit v1.2.3