From: Ray Strode Date: Fri, 17 Sep 2010 01:31:24 +0000 (-0400) Subject: main: add __DATE__ to debug prolog X-Git-Tag: 0.8.4~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=784fbcfb096d756a63cd42a1efad1413c1ed8903;p=thirdparty%2Fplymouth.git main: add __DATE__ to debug prolog When looking at debug logs, it's often useful to know how old the build of plymouth featured in the log is. --- diff --git a/src/main.c b/src/main.c index 8152fc74..4b069c75 100644 --- a/src/main.c +++ b/src/main.c @@ -1879,6 +1879,8 @@ initialize_environment (state_t *state) check_verbosity (state); check_logging (state); + ply_trace ("source built on %s", __DATE__); + state->keystroke_triggers = ply_list_new (); state->entry_triggers = ply_list_new (); state->entry_buffer = ply_buffer_new();