diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/logger/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/logger/log.c b/lib/logger/log.c index daa3713..ef68a2e 100644 --- a/lib/logger/log.c +++ b/lib/logger/log.c @@ -68,7 +68,7 @@ void log(char *module_name, int log_level, char *format_string, ...) void panic(char *module_name, char *message) { char buf_log[256]; - tfp_sprintf(buf_log,"KERNEL PANIC !! %s: %s\n",module_name,message); + tfp_sprintf(buf_log,"\033[41;37m\n !! KERNEL PANIC !! %s: %s\n\n",module_name,message); log_string(buf_log); while(1) |
