diff --git a/include/class_loader/console_bridge_compatibility.h b/include/class_loader/console_bridge_compatibility.h index 8a586c21..93344bc4 100644 --- a/include/class_loader/console_bridge_compatibility.h +++ b/include/class_loader/console_bridge_compatibility.h @@ -34,22 +34,26 @@ #ifndef CONSOLE_BRIDGE_logError # define CONSOLE_BRIDGE_logError(fmt, ...) \ - console_bridge::log(__FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_ERROR, fmt, ##__VA_ARGS__) + console_bridge::log( \ + __FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_ERROR, fmt, ##__VA_ARGS__) #endif #ifndef CONSOLE_BRIDGE_logWarn # define CONSOLE_BRIDGE_logWarn(fmt, ...) \ - console_bridge::log(__FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_WARN, fmt, ##__VA_ARGS__) + console_bridge::log( \ + __FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_WARN, fmt, ##__VA_ARGS__) #endif #ifndef CONSOLE_BRIDGE_logInform # define CONSOLE_BRIDGE_logInform(fmt, ...) \ - console_bridge::log(__FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_INFO, fmt, ##__VA_ARGS__) + console_bridge::log( \ + __FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_INFO, fmt, ##__VA_ARGS__) #endif #ifndef CONSOLE_BRIDGE_logDebug # define CONSOLE_BRIDGE_logDebug(fmt, ...) \ - console_bridge::log(__FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_DEBUG, fmt, ##__VA_ARGS__) + console_bridge::log( \ + __FILE__, __LINE__, console_bridge::CONSOLE_BRIDGE_LOG_DEBUG, fmt, ##__VA_ARGS__) #endif #endif // CLASS_LOADER__CONSOLE_BRIDGE_COMPATIBILITY_H_