thodg/cgminer/logging.c

Branch :


Log

Author Commit Date CI Message
8e9f32a8 2013-10-18 23:30:05 Add a forcelog variant of applog which invalidates any console lock to force output.
5fb5dd0b 2013-07-06 21:04:32 logging - size check sprintf
e2b4d490 2013-06-15 22:08:47 logging remove extra added <LF>
7eba9634 2013-06-15 22:03:56 remove varargs from logging/quit/in general as much as possible
8f08a327 2013-05-02 22:50:25 applog - force type checking
8971c56b 2013-04-29 00:47:58 va_copy is meant to be matched by a va_end in log_generic.
93901011 2013-04-21 19:15:34 Use cgtime in logging.c
c9ae7150 2013-04-04 22:59:10 Compile CPU mining for win32 and win64
c113534f 2012-10-04 15:35:28 Begin support for mingw stratum build. Conflicts: configure.ac
da4ff2bd 2012-07-23 20: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)
d98e561a 2012-07-23 20:15:45 Simplify code to a single vprintf path for curses-less printing
80593c47 2012-07-23 19:56:03 Move opt_quiet check to my_log_curses, so it works for curses-less builds
d2195bd0 2012-07-23 19:41:41 Use log_generic for vapplog to cut down on code duplication
1097aefb 2012-07-23 19:35:51 Add space to log output now that there is more screen real estate available.
a1edc7db 2012-07-15 05:37:49 Bugfix: Fix build without curses but with OpenCL
4da6758f 2012-04-28 00:34:35 Add space to log output now that there is more screen real estate available.
ed8382c8 2012-03-12 14:56:05 Make curses TUI support optional at compile-time.
d1cddf8b 2012-02-21 22:23:07 Update licensing to GPL V3.
810ad045 2012-02-18 23:16:08 More copyright updates.
11123848 2012-02-12 17:53:50 Fix missing field initialisers warnings.
be8ad579 2012-02-12 11:41:58 Add missing define in logging.c for isatty()
e0fec357 2012-02-11 19: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.