-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: move logging functionality to separate module
BREAKING CHANGE: logging is in a new module: asap::logging. Many modules would want to only get the basic common functionality without pulling extra 3rd party dependencies such as spdlog, fmt etc... For this reason, the logging functionality is taken out of the common submodule and moved to logging submodule.
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule common
updated
8 files
+2 −4 | CMakeLists.txt | |
+2 −59 | doc/conf.py.in | |
+0 −475 | include/common/logging.h | |
+7 −3 | include/common/non_copiable.h | |
+0 −194 | src/logging.cpp | |
+24 −0 | src/non_copiable.cpp | |
+0 −1 | test/CMakeLists.txt | |
+0 −214 | test/logging_test.cpp |
Submodule logging
updated
14 files
+137 −0 | CMakeLists.txt | |
+29 −0 | README.md | |
+14 −0 | doc/api.rst | |
+75 −0 | doc/api/logging.rst | |
+146 −0 | doc/conf.py.in | |
+51 −0 | doc/index.rst | |
+5 −0 | doc/license.rst | |
+4 −0 | doc/usage.rst | |
+5 −0 | doc/version.rst | |
+476 −0 | include/logging/logging.h | |
+194 −0 | src/logging.cpp | |
+84 −0 | test/CMakeLists.txt | |
+214 −0 | test/logging_test.cpp | |
+3 −0 | test/main.cpp |