Skip to content

Commit c43b85c

Browse files
committed
Updates readme.
Fixes minor issue with logger.
1 parent 25a0866 commit c43b85c

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
# cxx-utilities
1+
# C++ Utilities
2+
Collection of utilities which can be used in C++ projects.
3+
No novelties here, just functions and classes that can be re-used in multiple projects.
4+
5+
- [logger](./include/applogger/)
6+
- [build utilities](./include/build_utilities/)
7+
- [custom exceptions](./include/custom_exceptions/)
8+
- [maths & geometry](./include/maths_geometry/)
9+
- [path utilities](./include/pathutils/)
10+
- [string utilities](./include/string_utilities/)
11+
- [system information](./include/system_info_utilities/)
12+
- [time utilities](./include/time_utilities/)
13+

src/applogger/apploggerwithchannels.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void AppLoggerWithChannels::addChannelSink(
9090
auto backend = boost::make_shared<sinks::text_file_backend>(
9191
keywords::file_name = filename,
9292
keywords::rotation_size = 10 * 1024 * 1024,
93-
keywords::time_based_rotation = sinks::file::rotation_at_time_point(0, 0, 0),
93+
keywords::time_based_rotation = sinks::file::rotation_at_time_point(0, 0, 0)
9494
);
9595

9696
auto sink = boost::make_shared<sink_t>(backend);

0 commit comments

Comments
 (0)