diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-17 19:43:59 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-17 19:43:59 +0200 |
| commit | d98828d08eb1f6c1394f38a1df69c73fef0cfefa (patch) | |
| tree | 31df37430733c906b235b88c2cfa14d835af4bec /lib | |
| parent | 29ea3208b004f15dafa48ae29a75ba7f0c093a74 (diff) | |
working on vt52 and some cleanup
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/logger/log.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/logger/log.c b/lib/logger/log.c index 7d58458..430f982 100644 --- a/lib/logger/log.c +++ b/lib/logger/log.c @@ -5,7 +5,6 @@ #include "log.h" #include "kernel/config.h" -#include "kernel/console.h" #include "terminal/vt52.h" #include "lib/printf/printf.h" #include "kernel/timer.h" @@ -63,7 +62,7 @@ void panic(char *module_name, char *message) { char buf_log[256]; tfp_sprintf(buf_log,"KERNEL PANIC !! %s: %s\n",module_name,message); - console_put_str_red(buf_log); + //console_put_str_red(buf_log); while(1) { |
