Skip to content

Commit

Permalink
Updated plog to v1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
paullouisageneau committed Sep 4, 2023
1 parent 3b8da1a commit 9d5954b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/plog
Submodule plog updated 81 files
+17 −3 .appveyor.yml
+8 −1 .circleci/config.yml
+4 −2 .cirrus.yml
+3 −0 .editorconfig
+88 −0 .github/workflows/ci.yml
+27 −0 .github/workflows/nuget.yml
+0 −19 .travis.yml
+66 −26 CMakeLists.txt
+21 −375 LICENSE
+229 −133 README.md
+ doc/color-console.png
+2 −2 include/plog/Appenders/AndroidAppender.h
+23 −0 include/plog/Appenders/ArduinoAppender.h
+4 −4 include/plog/Appenders/ColorConsoleAppender.h
+10 −5 include/plog/Appenders/ConsoleAppender.h
+3 −3 include/plog/Appenders/DebugOutputAppender.h
+42 −0 include/plog/Appenders/DynamicAppender.h
+18 −12 include/plog/Appenders/EventLogAppender.h
+7 −8 include/plog/Appenders/RollingFileAppender.h
+6 −6 include/plog/Converters/NativeEOLConverter.h
+5 −5 include/plog/Converters/UTF8Converter.h
+40 −0 include/plog/Helpers/AscDump.h
+79 −0 include/plog/Helpers/HexDump.h
+24 −0 include/plog/Helpers/PrintVar.h
+1 −1 include/plog/Init.h
+22 −0 include/plog/Initializers/ConsoleInitializer.h
+5 −5 include/plog/Initializers/RollingFileInitializer.h
+1 −1 include/plog/Log.h
+1 −1 include/plog/Logger.h
+173 −50 include/plog/Record.h
+131 −66 include/plog/Util.h
+5 −0 include/plog/WinApi.h
+55 −0 library.json
+23 −0 plog.nuspec
+8 −0 plog.targets
+8 −4 samples/Android/AndroidJNI/Main.cpp
+23 −0 samples/Android/AndroidNative/Main.cpp
+13 −2 samples/Android/CMakeLists.txt
+0 −25 samples/Android/jni/Android.mk
+0 −2 samples/Android/jni/Application.mk
+5 −0 samples/Arduino/platformio.ini
+14 −0 samples/Arduino/src/main.cpp
+3 −0 samples/AscDump/CMakeLists.txt
+32 −0 samples/AscDump/Main.cpp
+15 −1 samples/CMakeLists.txt
+9 −0 samples/CXX11/CMakeLists.txt
+33 −0 samples/CXX11/Main.cpp
+17 −0 samples/CXX17/CMakeLists.txt
+27 −0 samples/CXX17/Main.cpp
+1 −1 samples/CustomAppender/Main.cpp
+2 −2 samples/Demo/CMakeLists.txt
+68 −4 samples/Demo/Main.cpp
+20 −0 samples/Demo/MyClass.h
+3 −0 samples/DynamicAppender/CMakeLists.txt
+30 −0 samples/DynamicAppender/Main.cpp
+3 −0 samples/HexDump/CMakeLists.txt
+44 −0 samples/HexDump/Main.cpp
+25 −0 samples/NotShared/CMakeLists.txt
+22 −0 samples/NotShared/NotSharedApp/Main.cpp
+20 −0 samples/NotShared/NotSharedLib1/Main.cpp
+20 −0 samples/NotShared/NotSharedLib2/Main.cpp
+3 −0 samples/Path/CMakeLists.txt
+3 −0 samples/PrintVar/CMakeLists.txt
+52 −0 samples/PrintVar/Main.cpp
+23 −9 samples/Shared/CMakeLists.txt
+36 −6 samples/Shared/SharedApp/Main.cpp
+0 −19 samples/Shared/SharedLib/Main.cpp
+19 −0 samples/Shared/SharedLib1/Main.cpp
+19 −0 samples/Shared/SharedLib2/Main.cpp
+5 −0 samples/Utf8Everywhere/CMakeLists.txt
+33 −0 samples/Utf8Everywhere/Main.cpp
+20 −0 test/CMakeLists.txt
+89 −0 test/Conditional.cpp
+2 −0 test/Main.cpp
+97 −0 test/Printf.cpp
+196 −0 test/SimpleTypes.cpp
+141 −0 test/StdContainers.cpp
+49 −0 test/StdManipulators.cpp
+162 −0 test/StringTypes.cpp
+22 −0 test/TestAppender.h
+5,464 −0 test/doctest.h

0 comments on commit 9d5954b

Please sign in to comment.