// // Copyright(c) 2015 Gabi Melman. // Distributed under the MIT License (http://opensource.org/licenses/MIT) // spdlog usage example #include void stdout_logger_example(); void basic_example(); void rotating_example(); void daily_example(); void async_example(); void binary_example(); void trace_example(); void multi_sink_example(); void user_defined_example(); void err_handler_example(); void syslog_example(); #include #include #include #include int main(int args, char *argv[]) { spdlog::cfg::init_from_env(); spdlog::cfg::init_from_argv(args, argv); spdlog::debug("HELLO DEBUG"); spdlog::info("HELLO INFO"); auto l1 = spdlog::stderr_color_st("l1"); l1->trace("L1 TRACE"); }