aboutsummaryrefslogtreecommitdiff
path: root/util/log.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-02-19 18:10:24 -0500
committerGitHub <noreply@github.com>2018-02-19 18:10:24 -0500
commitc4fb9651445bb7302a904b05583c064ff09cb48e (patch)
tree266f8d4438350bbaa56567f5553ca441e5d4f1be /util/log.c
parent09cfa39392bd049225b1be7590cd099131472bf2 (diff)
parent1d9be89e2d62316690ed211e50b79f2bec38e00f (diff)
Merge pull request #651 from swaywm/revert-647-elf_visibility
Revert "ELF Visibility"
Diffstat (limited to 'util/log.c')
-rw-r--r--util/log.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/util/log.c b/util/log.c
index bf5f848c..327402e6 100644
--- a/util/log.c
+++ b/util/log.c
@@ -7,7 +7,6 @@
#include <time.h>
#include <unistd.h>
#include <wlr/util/log.h>
-#include "util/defs.h"
static bool colored = true;
static log_importance_t log_importance = L_ERROR;
@@ -49,7 +48,6 @@ void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) {
static log_callback_t log_callback = wlr_log_stderr;
-WLR_API
void wlr_log_init(log_importance_t verbosity, log_callback_t callback) {
if (verbosity < L_LAST) {
log_importance = verbosity;
@@ -59,12 +57,10 @@ void wlr_log_init(log_importance_t verbosity, log_callback_t callback) {
}
}
-WLR_API
void _wlr_vlog(log_importance_t verbosity, const char *fmt, va_list args) {
log_callback(verbosity, fmt, args);
}
-WLR_API
void _wlr_log(log_importance_t verbosity, const char *fmt, ...) {
va_list args;
va_start(args, fmt);
@@ -77,7 +73,6 @@ void _wlr_log(log_importance_t verbosity, const char *fmt, ...) {
// e.g. '/src/build/wlroots/backend/wayland/backend.c' and
// '../backend/wayland/backend.c' will both be stripped to
// 'backend/wayland/backend.c'
-WLR_API
const char *_strip_path(const char *filepath) {
static int srclen = sizeof(WLR_SRC_DIR);
if (strstr(filepath, WLR_SRC_DIR) == filepath) {