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
1b8fb922
Commit
1b8fb922
authored
Nov 20, 2014
by
gabi
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/gabime/spdlog
Conflicts: include/spdlog/sinks/async_sink.h
parents
66039c7c
3f5f2644
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
11 deletions
+18
-11
README.md
README.md
+18
-11
No files found.
README.md
View file @
1b8fb922
...
...
@@ -14,17 +14,24 @@ Just copy the files to your build tree and use a C++11 compiler
*
mingw with g++ 4.9.x
##Features
*
Very fast - performance is the primary goal (see becnhmarks below)
*
Headers only
*
No dependencies
*
Cross platform - Linux / Windows on 32/64 bits
*
Multi/Single threaded loggers
*
Rotating log files
*
Daily log files
*
Console logging
*
Optional async logging
*
Logging levels
*
Custom formatting with user defined patterns
*
Very fast - performance is the primary goal (see becnhmarks below).
*
Headers only.
*
No dependencies.
*
Cross platform - Linux / Windows on 32/64 bits.
*
Variadic-template/stream call styles:
```logger.info("variadic", x, y) << "or stream" << x << y;```
*
[
Custom
](
https://github.com/gabime/spdlog/wiki/Custom-formatting
)
formatting.
*
Multi/Single threaded loggers.
*
Various log targets:
*
Rotating log files.
*
Daily log files.
*
Console logging.
*
Linux syslog.
*
Easily extendable with custom log targets (just implement a single function in the
[
sink
](
include/spdlog/sinks/sink.h
)
interface).
*
Optional async logging .
*
Log levels.
## Benchmarks
...
...
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