log.c: fix indenting

next
Michael Stapelberg 2010-11-29 22:28:23 +01:00
parent 38b231b848
commit 5625a2f17f
1 changed files with 46 additions and 46 deletions

View File

@ -1,9 +1,9 @@
/*
* vim:ts=8:expandtab
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
*
* © 2009 Michael Stapelberg and contributors
* © 2009-2010 Michael Stapelberg and contributors
*
* See file LICENSE for license information.
*
@ -24,7 +24,7 @@
static uint64_t loglevel = 0;
static bool verbose = true;
/**
/*
* Set verbosity of i3. If verbose is set to true, informative messages will
* be printed to stdout. If verbose is set to false, only errors will be
* printed.
@ -34,7 +34,7 @@ void set_verbosity(bool _verbose) {
verbose = _verbose;
}
/**
/*
* Enables the given loglevel.
*
*/
@ -75,7 +75,7 @@ void vlog(char *fmt, va_list args) {
vprintf(fmt, args);
}
/**
/*
* Logs the given message to stdout while prefixing the current time to it,
* but only if verbose mode is activated.
*
@ -91,7 +91,7 @@ void verboselog(char *fmt, ...) {
va_end(args);
}
/**
/*
* Logs the given message to stdout while prefixing the current time to it.
*
*/