summaryrefslogtreecommitdiff
path: root/common/log.c
AgeCommit message (Collapse)AuthorLines
2016-07-28Add timestamp to log messagesTony Crisci-0/+15
2016-07-17Remove SIGSERV and SIGABORT handlerDrew DeVault-46/+1
From now on let's just let the core dumps happen and ask users to provide them.
2016-06-27Add get_log_level() to encapsulate v (current log level)David Eklov-3/+7
This patch also makes all global variable in log.c static.
2016-05-02common: refactor sway_log()Eric Engestrom-9/+6
This removes most preprocessor logic, leaving it only it the header.
2016-05-02common: fix double-close in error_handler()Eric Engestrom-3/+1
2016-05-02Fix off-by-one bug in log functionsEric Engestrom-2/+2
2016-02-26Correctly exit sway on errors.Mikkel Oscar Lyderik-1/+1
Calling `exit` in sway_terminate prevents sway from correctly shutting down (freeing data, cleanly terminating the ipc server, etc.). A better way is to exit straight away if the failure occurs before `wlc_run` and use sway_abort as usual if it occur when wlc is running.
2016-02-08Fix clang warningsMikkel Oscar Lyderik-1/+1
2016-01-28Print /proc/<pid>/maps on segfaultDrew DeVault-0/+20
2015-12-21use CMake's FindBacktrace for backtrace feature detectionrobotanarchy-1/+4
2015-11-12Start fleshing out wayland client implementationDrew DeVault-0/+159
This introduces a basic shared framework for making wayland clients within sway itself.