summaryrefslogtreecommitdiff
path: root/lib/logger/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/logger/log.c')
-rw-r--r--lib/logger/log.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/logger/log.c b/lib/logger/log.c
index a5925e9..968d978 100644
--- a/lib/logger/log.c
+++ b/lib/logger/log.c
@@ -13,12 +13,10 @@
static void log_string(char *str)
{
// if(get_max_fd()>=2) syscall_write(2,str,strlen(str));
-
while(*str!=0)
{
serial_write(*str++);
}
-
}
void log(char *module_name, int log_level, char *format_string, ...)