Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bench/zf_log-bench.cpp')
-rw-r--r--bench/zf_log-bench.cpp55
1 files changed, 28 insertions, 27 deletions
diff --git a/bench/zf_log-bench.cpp b/bench/zf_log-bench.cpp
index dfa28921..3ad7c80a 100644
--- a/bench/zf_log-bench.cpp
+++ b/bench/zf_log-bench.cpp
@@ -1,27 +1,28 @@
-#include <stdio.h>
-#include <zf_log.c>
-
-const char g_path[] = "logs/zf_log.txt";
-static FILE *g_f;
-
-static void output_callback(zf_log_message *msg)
-{
- *msg->p = '\n';
- fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_f);
-}
-
-int main(int, char* [])
-{
- g_f = fopen(g_path, "wb");
- if (!g_f) {
- ZF_LOGE_AUX(ZF_LOG_STDERR, "Failed to open log file: %s", g_path);
- return -1;
- }
- zf_log_set_output_callback(ZF_LOG_PUT_STD, output_callback);
-
- const int howmany = 1000000;
- for(int i = 0 ; i < howmany; ++i)
- ZF_LOGI("zf_log message #%i: This is some text for your pleasure", i);
- fclose(g_f);
- return 0;
-}
+#include <stdio.h>
+#include <zf_log.c>
+
+const char g_path[] = "logs/zf_log.txt";
+static FILE *g_f;
+
+static void output_callback(zf_log_message *msg)
+{
+ *msg->p = '\n';
+ fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_f);
+}
+
+int main(int, char* [])
+{
+ g_f = fopen(g_path, "wb");
+ if (!g_f)
+ {
+ ZF_LOGE_AUX(ZF_LOG_STDERR, "Failed to open log file: %s", g_path);
+ return -1;
+ }
+ zf_log_set_output_callback(ZF_LOG_PUT_STD, output_callback);
+
+ const int howmany = 1000000;
+ for(int i = 0 ; i < howmany; ++i)
+ ZF_LOGI("zf_log message #%i: This is some text for your pleasure", i);
+ fclose(g_f);
+ return 0;
+}