summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-08-29 13:39:23 +0200
committerMichal Idziorek <m.i@gmx.at>2014-08-29 13:39:23 +0200
commit1cb4a8a202023958589d563ad132d701e27c008a (patch)
tree0693115d5a5dcb4084de64726f549a53db16d91c /lib
parentae8ba764eeb61089903c2dee5668af0453df33e0 (diff)
changed default log color and some memtests
Diffstat (limited to 'lib')
-rw-r--r--lib/logger/log.c3
1 files changed, 2 insertions, 1 deletions
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();