]> spindle.queued.net Git - midori/commitdiff
Add timestamps if logging to a file
authorPaweł Forysiuk <tuxator@o2.pl>
Sun, 29 May 2011 15:13:08 +0000 (17:13 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 1 Jun 2011 22:55:36 +0000 (00:55 +0200)
And try to match appearance of console messages.

midori/main.c

index b3db3067ec92ffb0db1f4be1c858137333b1fd15..948f2287e77fc701b878e6b5c97d9de2c76a77af 100644 (file)
@@ -1876,6 +1876,7 @@ midori_log_to_file (const gchar*   log_domain,
 {
     FILE* logfile = fopen ((const char*)user_data, "a");
     gchar* level_name = "";
+    time_t timestamp = time (NULL);
 
     switch (log_level)
     {
@@ -1904,7 +1905,7 @@ midori_log_to_file (const gchar*   log_domain,
             break;
     }
 
-    fprintf (logfile, "%s %s: %s\n",
+    fprintf (logfile, "%s%s-%s **: %s\n", asctime (localtime (&timestamp)),
         log_domain ? log_domain : "Midori", level_name, message);
     fclose (logfile);
 }