normalize #include
[ppastats.git] / src / cache.c
index 4a3bf11..b00ddb5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 jeanfi@gmail.com
+ * Copyright (C) 2011-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
@@ -24,9 +24,9 @@
 #include <stdio.h>
 #include <string.h>
 
-#include "cache.h"
-#include "log.h"
-#include "ppastats.h"
+#include <cache.h>
+#include <plog.h>
+#include <ppastats.h>
 
 
 /*
@@ -59,7 +59,7 @@ const void *cache_get(const char *key)
                        return cache.entries[i].value;
                }
 
-       log_debug(_("cache miss %s"), key);
+       log_debug(_("memory cache miss %s"), key);
 
        return NULL;
 }