mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-07 08:07:20 +02:00
Actually log errors to stderr and LOG_ERR
Amazingly, this has been a mistake since c459c05
This commit is contained in:
parent
d90d1a71d6
commit
ae016c4b5e
@ -56,9 +56,9 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
#define LOG_ERROR(...) \
|
#define LOG_ERROR(...) \
|
||||||
do { \
|
do { \
|
||||||
if (get_use_syslog()) { \
|
if (get_use_syslog()) { \
|
||||||
SYSLOG_MSG(__VA_ARGS__); \
|
SYSLOG_ERROR(__VA_ARGS__); \
|
||||||
} else { \
|
} else { \
|
||||||
PLOG_MSG(__VA_ARGS__); \
|
PLOG_ERROR(__VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user