diff options
| author | miguel <miguel@miguel-acer.softwarefools.com> | 2014-08-28 00:08:47 +0200 |
|---|---|---|
| committer | miguel <miguel@miguel-acer.softwarefools.com> | 2014-08-28 00:08:47 +0200 |
| commit | 8496db1f6caff488b3835e7897fd079a267d8839 (patch) | |
| tree | 477208043d89cd8a23e3db39f6c0ec08117c9278 /lib | |
| parent | 8fa69899700f78014600585f377952a780ba4c2f (diff) | |
figured out colors :)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/logger/log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/logger/log.c b/lib/logger/log.c index 85ac5b6..55622c0 100644 --- a/lib/logger/log.c +++ b/lib/logger/log.c @@ -6,12 +6,12 @@ void PutConsole(char *str, int color, va_list va); void log(char *module_name, int prio, char *format_string, ...) { - PutConsole(module_name,1000,0); - PutConsole(": ",0xf,0); + PutConsole(module_name,0b1111100000000000,0); + PutConsole(": ",0b0000011111100000,0); va_list va; va_start(va,format_string); - PutConsole(format_string, 6000, va); + PutConsole(format_string, 0b11111, va); va_end(va); PutConsoleNL(); |
