Skip to content

Commit f3f9994

Browse files
committed
chore: Remove temp code in example
1 parent 5c6adb3 commit f3f9994

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

example/efp_logger_example.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ int main() {
2929
// ! Every 20 ~ 30 char will take one buffer space.
3030
fatal("This is a fatal message with a std::string: {}", std::string("fatal error"));
3131

32-
const auto lorem_ipsum = std::string("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
33-
info("This is a info message with a long string: {}", lorem_ipsum);
34-
const auto a_1000 = std::string(1000, 'a');
35-
info("This is a info message with a 1000 char string: {}", a_1000);
36-
info("Does it support Korean? {}", "한글도 되나요?");
32+
// const auto lorem_ipsum = std::string("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
33+
// info("This is a info message with a long string: {}", lorem_ipsum);
34+
// const auto a_1000 = std::string(1000, 'a');
35+
// info("This is a info message with a 1000 char string: {}", a_1000);
36+
// info("Does it support Korean? {}", "한글도 되나요?");
3737

3838
return 0;
3939
}

0 commit comments

Comments
 (0)