logging.c

Branch


Log

Author Commit Date CI Message
kanoi f21deced 2015-07-12T13:13:51 Upgrade date/timestamp strings to millisecond accuracy
kanoi f5e45b1e 2014-04-15T09:55:55 syslog requires a facility ... in more than one place
root d4917de0 2014-04-15T09:55:55 syslog requires a facility ... in more than one place
Kano 485ebc31 2014-04-05T08:54:52 syslog requires a facility
Con Kolivas 1ca3bf7e 2014-02-15T16:55:47 Add a simplelog function that does not log date and time.
Con Kolivas 8e9f32a8 2013-10-18T23:30:05 Add a forcelog variant of applog which invalidates any console lock to force output.
Kano 5fb5dd0b 2013-07-06T21:04:32 logging - size check sprintf
Kano e2b4d490 2013-06-15T22:08:47 logging remove extra added <LF>
Kano 7eba9634 2013-06-15T22:03:56 remove varargs from logging/quit/in general as much as possible
Kano 8f08a327 2013-05-02T22:50:25 applog - force type checking
Con Kolivas 8971c56b 2013-04-29T00:47:58 va_copy is meant to be matched by a va_end in log_generic.
Con Kolivas 93901011 2013-04-21T19:15:34 Use cgtime in logging.c
James Z.M. Gao c9ae7150 2013-04-04T22:59:10 Compile CPU mining for win32 and win64
Con Kolivas c113534f 2012-10-04T15:35:28 Begin support for mingw stratum build. Conflicts: configure.ac
Luke Dashjr da4ff2bd 2012-07-23T20:22:01 Bugfix: Use a mutex to control non-curses output Without this, there is no guarantee writes won't overlap (and it happens quite a bit on Windows with the bitforce driver)
Luke Dashjr d98e561a 2012-07-23T20:15:45 Simplify code to a single vprintf path for curses-less printing
Luke Dashjr 80593c47 2012-07-23T19:56:03 Move opt_quiet check to my_log_curses, so it works for curses-less builds
Luke Dashjr d2195bd0 2012-07-23T19:41:41 Use log_generic for vapplog to cut down on code duplication
Luke Dashjr 1097aefb 2012-07-23T19:35:51 Add space to log output now that there is more screen real estate available.
Luke Dashjr a1edc7db 2012-07-15T05:37:49 Bugfix: Fix build without curses but with OpenCL
Con Kolivas 4da6758f 2012-04-28T00:34:35 Add space to log output now that there is more screen real estate available.
Luke Dashjr ed8382c8 2012-03-12T14:56:05 Make curses TUI support optional at compile-time.
Con Kolivas d1cddf8b 2012-02-21T22:23:07 Update licensing to GPL V3.
Con Kolivas 810ad045 2012-02-18T23:16:08 More copyright updates.
Con Kolivas 11123848 2012-02-12T17:53:50 Fix missing field initialisers warnings.
Con Kolivas be8ad579 2012-02-12T11:41:58 Add missing define in logging.c for isatty()
zefir e0fec357 2012-02-11T19:31:34 modularized logging, support for priority based logging Functions related to logging are extracted into dedicated source files for better maintainability. The existing low-level logging API is extended with a generalized scheme providing log functions log_{error, warning, notice, info, debug} that log messages based on a global opt_log_level. opt_log_level for now is set to LOG_NOTICE and might be modified via command line options or config files in future releases.