Remove newlines from logger calls.
[deb_shairplay.git] / src / lib / logger.c
index 0ea18676b181146cb28790d97e1dad5cb7cce252..fd87ef41f650e6306534b3570cf6083f2e41645e 100644 (file)
@@ -1,16 +1,31 @@
+/**
+ *  Copyright (C) 2011-2012  Juho Vähä-Herttua
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2.1 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ */
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <assert.h>
 
 #include "logger.h"
+#include "compat.h"
 
 void
 logger_init(logger_t *logger)
 {
        assert(logger);
 
-       logger->level = LOGGER_INFO;
+       logger->level = LOGGER_DEBUG;
        logger->callback = NULL;
 }
 
@@ -80,10 +95,10 @@ logger_log(logger_t *logger, int level, const char *fmt, ...)
                char *local = logger_utf8_to_local(buffer);
 
                if (local) {
-                       fprintf(stderr, "%s", local);
+                       fprintf(stderr, "%s\n", local);
                        free(local);
                } else {
-                       fprintf(stderr, "%s", buffer);
+                       fprintf(stderr, "%s\n", buffer);
                }
        }
 }