2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-09-01 06:45:35 +00:00

log: only print timestamps when verbosity increased

While timestamps can be handy, they clutter output for normal users.
Let's print them only when verbosity (-v) is increased from default.
Currently, default is 2 (-vv) so for timestamps one should use -vvv
or -v3.

Alternatively, we could introduce a separate --timestamps option.
Personally, I find it more handy for timestamps to be tied to log level.

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Kir Kolyshkin
2014-01-08 19:36:25 -08:00
committed by Pavel Emelyanov
parent 3d9ff2706f
commit 5f9b8794e0
3 changed files with 17 additions and 6 deletions

View File

@@ -112,7 +112,7 @@ OPTIONS
The following levels are available: The following levels are available:
* *-v1*, *-v* - only messages and errors; * *-v1*, *-v* - only messages and errors;
* *-v2*, *-vv* - also warnings (default level); * *-v2*, *-vv* - also warnings (default level);
* *-v3*, *-vvv* - also information messages; * *-v3*, *-vvv* - also information messages and timestamps;
* *-v4*, *-vvvv* - lots of debug. * *-v4*, *-vvvv* - lots of debug.
*--log-pid*:: *--log-pid*::

View File

@@ -443,7 +443,7 @@ usage:
" -v[NUM] set logging level (higher level means more output):\n" " -v[NUM] set logging level (higher level means more output):\n"
" -v1|-v - only errors and messages\n" " -v1|-v - only errors and messages\n"
" -v2|-vv - also warnings (default level)\n" " -v2|-vv - also warnings (default level)\n"
" -v3|-vvv - also information messages\n" " -v3|-vvv - also information messages and timestamps\n"
" -v4|-vvvv - lots of debug\n" " -v4|-vvvv - lots of debug\n"
"\n" "\n"
"* Memory dumping options:\n" "* Memory dumping options:\n"

19
log.c
View File

@@ -19,6 +19,8 @@
#include "servicefd.h" #include "servicefd.h"
#define DEFAULT_LOGFD STDERR_FILENO #define DEFAULT_LOGFD STDERR_FILENO
/* Enable timestamps if verbosity is increased from default */
#define LOG_TIMESTAMP (DEFAULT_LOGLEVEL + 1)
static unsigned int current_loglevel = DEFAULT_LOGLEVEL; static unsigned int current_loglevel = DEFAULT_LOGLEVEL;
@@ -61,12 +63,21 @@ int log_get_fd(void)
return fd < 0 ? DEFAULT_LOGFD : fd; return fd < 0 ? DEFAULT_LOGFD : fd;
} }
static void reset_buf_off(void)
{
if (current_loglevel >= LOG_TIMESTAMP)
/* reserve space for a timestamp */
buf_off = TS_BUF_OFF;
else
buf_off = 0;
}
int log_init(const char *output) int log_init(const char *output)
{ {
int new_logfd, fd; int new_logfd, fd;
gettimeofday(&start, NULL); gettimeofday(&start, NULL);
buf_off = TS_BUF_OFF; reset_buf_off();
if (output) { if (output) {
new_logfd = open(output, O_CREAT|O_TRUNC|O_WRONLY|O_APPEND, 0600); new_logfd = open(output, O_CREAT|O_TRUNC|O_WRONLY|O_APPEND, 0600);
@@ -102,8 +113,7 @@ int log_init_by_pid(void)
* reset buf_off as this fn is called on each fork while * reset buf_off as this fn is called on each fork while
* restoring process tree * restoring process tree
*/ */
reset_buf_off();
buf_off = TS_BUF_OFF;
if (!opts.log_file_per_pid) { if (!opts.log_file_per_pid) {
buf_off += snprintf(buffer + buf_off, PAGE_SIZE - buf_off, "%6d: ", getpid()); buf_off += snprintf(buffer + buf_off, PAGE_SIZE - buf_off, "%6d: ", getpid());
@@ -147,7 +157,8 @@ static void __print_on_level(unsigned int loglevel, const char *format, va_list
if (loglevel > current_loglevel) if (loglevel > current_loglevel)
return; return;
fd = log_get_fd(); fd = log_get_fd();
print_ts(); if (current_loglevel >= LOG_TIMESTAMP)
print_ts();
} }
size = vsnprintf(buffer + buf_off, PAGE_SIZE - buf_off, format, params); size = vsnprintf(buffer + buf_off, PAGE_SIZE - buf_off, format, params);