no way to avoid the typedef for supporting old json releases
[ppastats.git] / src / log.c
index 0790345..813cf04 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2012 jeanfi@gmail.com
+ * Copyright (C) 2010-2014 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -93,6 +93,7 @@ static void vlogf(int lvl, const char *fmt, va_list ap)
                stdf = stdout;
 
        fprintf(stdf, "[%ld] %s %s\n", tv.tv_sec, lvl_str, buffer);
+       fflush(stdf);
 }
 
 void log_printf(int lvl, const char *fmt, ...)