/******************************************************************************/ /* */ /* ::: :::::::: */ /* logs.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvaas +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/21 09:15:24 by maldavid #+# #+# */ /* Updated: 2024/02/07 16:52:54 by maldavid ### ########.fr */ /* */ /******************************************************************************/ #ifndef __LOGS__ #define __LOGS__ #include namespace irc { enum LogType { log_message = 0, log_warning, log_error }; namespace logs { void report(LogType type, std::string message, ...); // message is not a const reference due to va_args } } #endif