├── .github └── workflows │ └── build.yml ├── DebugLog.h ├── DebugLog ├── FileLogger.h ├── Manager.h └── Types.h ├── DebugLogDisable.h ├── DebugLogEnable.h ├── DebugLogRestoreState.h ├── LICENSE ├── README.md ├── examples ├── basic │ └── basic.ino ├── control_scope │ ├── MyClass.h │ └── control_scope.ino ├── cpp │ └── main.cpp ├── log_level │ └── log_level.ino ├── log_to_file │ └── log_to_file.ino ├── log_to_file_manual_save │ └── log_to_file_manual_save.ino └── options │ └── options.ino ├── library.json └── library.properties /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /DebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLog.h -------------------------------------------------------------------------------- /DebugLog/FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLog/FileLogger.h -------------------------------------------------------------------------------- /DebugLog/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLog/Manager.h -------------------------------------------------------------------------------- /DebugLog/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLog/Types.h -------------------------------------------------------------------------------- /DebugLogDisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLogDisable.h -------------------------------------------------------------------------------- /DebugLogEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLogEnable.h -------------------------------------------------------------------------------- /DebugLogRestoreState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/DebugLogRestoreState.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic/basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/basic/basic.ino -------------------------------------------------------------------------------- /examples/control_scope/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/control_scope/MyClass.h -------------------------------------------------------------------------------- /examples/control_scope/control_scope.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/control_scope/control_scope.ino -------------------------------------------------------------------------------- /examples/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/cpp/main.cpp -------------------------------------------------------------------------------- /examples/log_level/log_level.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/log_level/log_level.ino -------------------------------------------------------------------------------- /examples/log_to_file/log_to_file.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/log_to_file/log_to_file.ino -------------------------------------------------------------------------------- /examples/log_to_file_manual_save/log_to_file_manual_save.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/log_to_file_manual_save/log_to_file_manual_save.ino -------------------------------------------------------------------------------- /examples/options/options.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/examples/options/options.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hideakitai/DebugLog/HEAD/library.properties --------------------------------------------------------------------------------