You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: example/efp_logger_example.cpp
+6
Original file line number
Diff line number
Diff line change
@@ -29,5 +29,11 @@ int main() {
29
29
// ! Every 20 ~ 30 char will take one buffer space.
30
30
fatal("This is a fatal message with a std::string: {}", std::string("fatal error"));
31
31
32
+
constauto 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
+
constauto a_1000 = std::string(1000, 'a');
35
+
info("This is a info message with a 1000 char string: {}", a_1000);
0 commit comments