MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / OutputDetails

Function OutputDetails

DebugViewConsole/DebugViewConsole.cpp:48–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46};
47
48void OutputDetails(Settings settings, const Line& line)
49{
50 std::string separator = settings.tabs ? "\t" : " ";
51 if (settings.timestamp)
52 {
53 std::cout << GetTimeText(line.systemTime) << separator;
54 }
55 if (settings.performanceCounter)
56 {
57 std::cout << GetTimeText(line.time) << separator;
58 }
59 if (settings.pid)
60 {
61 std::cout << line.pid << separator;
62 }
63 if (settings.processName)
64 {
65 std::cout << line.processName.c_str() << separator;
66 }
67}
68
69static bool g_quit = false;
70

Callers 1

LogMessagesFunction · 0.85

Calls 2

GetTimeTextFunction · 0.85
c_strMethod · 0.45

Tested by

no test coverage detected