diff options
author | rbuj <[email protected]> | 2020-11-12 12:58:25 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-11-24 22:28:30 +0100 |
commit | e991c05debb9a907ac5d17e17dba2b2c275632d3 (patch) | |
tree | 2d52efefc6ce80ae8f16b5f4110d3591e1b385d4 /libcaja-private | |
parent | c3b53c8c877536f04ea6de0aeea709833b90c94c (diff) | |
download | caja-e991c05debb9a907ac5d17e17dba2b2c275632d3.tar.bz2 caja-e991c05debb9a907ac5d17e17dba2b2c275632d3.tar.xz |
Remove the use of the gettimeofday function
Diffstat (limited to 'libcaja-private')
-rw-r--r-- | libcaja-private/caja-debug-log.c | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/libcaja-private/caja-debug-log.c b/libcaja-private/caja-debug-log.c index 646e7f66..d872f91d 100644 --- a/libcaja-private/caja-debug-log.c +++ b/libcaja-private/caja-debug-log.c @@ -25,11 +25,14 @@ #include <errno.h> #include <stdio.h> #include <string.h> -#include <time.h> -#include <sys/time.h> #include "caja-debug-log.h" #include "caja-file.h" +#if !GLIB_CHECK_VERSION(2,65,2) +#include <time.h> +#include <sys/time.h> +#endif + #define DEFAULT_RING_BUFFER_NUM_LINES 1000 #define KEY_FILE_GROUP "debug log" @@ -151,8 +154,13 @@ caja_debug_logv (gboolean is_milestone, const char *domain, const GList *uris, c { char *str; char *debug_str; +#if GLIB_CHECK_VERSION(2,65,2) + char *date_str; + GDateTime* datetime; +#else struct timeval tv; struct tm tm; +#endif lock (); @@ -160,10 +168,20 @@ caja_debug_logv (gboolean is_milestone, const char *domain, const GList *uris, c goto out; str = g_strdup_vprintf (format, args); - gettimeofday (&tv, NULL); +#if GLIB_CHECK_VERSION(2,65,2) + datetime = g_date_time_new_now_local (); + date_str = g_date_time_format (datetime, "%Y/%m/%d %H:%M:%S.%f"); + g_date_time_unref (datetime); + debug_str = g_strdup_printf ("%p %s (%s): %s", + g_thread_self (), + date_str, + domain, + str); + g_free (date_str); +#else + gettimeofday (&tv, NULL); tm = *localtime (&tv.tv_sec); - debug_str = g_strdup_printf ("%p %04d/%02d/%02d %02d:%02d:%02d.%04d (%s): %s", g_thread_self (), tm.tm_year + 1900, @@ -175,6 +193,7 @@ caja_debug_logv (gboolean is_milestone, const char *domain, const GList *uris, c (int) (tv.tv_usec / 100), domain, str); +#endif g_free (str); if (uris) |