From 824fe6bba6b729490d70d00bad43da4b852b28a2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 22 May 2018 19:06:42 +0200 Subject: [PATCH] changed log facility to local1 --- CMakeLists.txt | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0a5775..63de245 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.7) project (expandurl-mastodon - VERSION 0.6.0 + VERSION 0.6.1 LANGUAGES CXX ) diff --git a/src/main.cpp b/src/main.cpp index 3655216..e55915e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -52,7 +52,7 @@ int main(int argc, char *argv[]) signal(SIGINT, signal_handler); signal(SIGTERM, signal_handler); curlpp::initialize(); - openlog("expandurl-mastodon", LOG_CONS | LOG_NDELAY | LOG_PID, LOG_LOCAL0); + openlog("expandurl-mastodon", LOG_CONS | LOG_NDELAY | LOG_PID, LOG_LOCAL1); syslog(LOG_NOTICE, "Program started by User %d", getuid()); Listener listener;