defined(ELPP_FEATURE_ALL) || defined(ELPP_FEATURE_CRASH_LOG) @brief Installs pre rollout callback, this callback is triggered when log file is about to be rolled out (can be useful for backing up)
| 3728 | /// @brief Installs pre rollout callback, this callback is triggered when log file is about to be rolled out |
| 3729 | /// (can be useful for backing up) |
| 3730 | static inline void installPreRollOutCallback(const PreRollOutCallback& callback) { |
| 3731 | ELPP->setPreRollOutCallback(callback); |
| 3732 | } |
| 3733 | /// @brief Uninstalls pre rollout callback |
| 3734 | static inline void uninstallPreRollOutCallback(void) { |
| 3735 | ELPP->unsetPreRollOutCallback(); |
nothing calls this directly
no test coverage detected