├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Easylog.hpp ├── LICENSE ├── README.md ├── images ├── easyLogExample.png ├── formatterexample.png └── loglableexample.png ├── libBuild ├── CMakeLists.txt ├── EasyLog.cpp └── EasyLog.hpp └── tests ├── CMakeLists.txt ├── fmt.cxx └── multi.cxx /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Easylog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/Easylog.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/README.md -------------------------------------------------------------------------------- /images/easyLogExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/images/easyLogExample.png -------------------------------------------------------------------------------- /images/formatterexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/images/formatterexample.png -------------------------------------------------------------------------------- /images/loglableexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/images/loglableexample.png -------------------------------------------------------------------------------- /libBuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/libBuild/CMakeLists.txt -------------------------------------------------------------------------------- /libBuild/EasyLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/libBuild/EasyLog.cpp -------------------------------------------------------------------------------- /libBuild/EasyLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/libBuild/EasyLog.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fmt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/tests/fmt.cxx -------------------------------------------------------------------------------- /tests/multi.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealFaceCode/easyLog/HEAD/tests/multi.cxx --------------------------------------------------------------------------------