Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
5b2bd79b
Commit
5b2bd79b
authored
Aug 20, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for syslog in FreeBSD
parent
aa0f6229
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
example.cpp
example/example.cpp
+1
-1
syslog_sink.h
include/spdlog/sinks/syslog_sink.h
+1
-1
No files found.
example/example.cpp
View file @
5b2bd79b
...
@@ -108,7 +108,7 @@ void async_example()
...
@@ -108,7 +108,7 @@ void async_example()
//syslog example (linux/osx only)
//syslog example (linux/osx only)
void
syslog_example
()
void
syslog_example
()
{
{
#if defined (__linux__) || defined(__APPLE__)
#if defined (__linux__) || defined(__APPLE__)
|| defined(__FreeBSD__)
std
::
string
ident
=
"spdlog-example"
;
std
::
string
ident
=
"spdlog-example"
;
auto
syslog_logger
=
spd
::
syslog_logger
(
"syslog"
,
ident
,
LOG_PID
);
auto
syslog_logger
=
spd
::
syslog_logger
(
"syslog"
,
ident
,
LOG_PID
);
syslog_logger
->
warn
(
"This is warning that will end up in syslog. This is Linux only!"
);
syslog_logger
->
warn
(
"This is warning that will end up in syslog. This is Linux only!"
);
...
...
include/spdlog/sinks/syslog_sink.h
View file @
5b2bd79b
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
#pragma once
#pragma once
#if defined(__linux__) || defined(__APPLE__)
#if defined(__linux__) || defined(__APPLE__)
|| defined(__FreeBSD__)
#include <spdlog/sinks/sink.h>
#include <spdlog/sinks/sink.h>
#include <spdlog/common.h>
#include <spdlog/common.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment