Skip to content

Commit eebe18a

Browse files
committed
fix cli descriptions
1 parent 7932b9f commit eebe18a

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

IntelPresentMon/PresentMonService/CliOptions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ namespace clio
2626
private: Group gl_{ this, "Logging", "Control logging behavior" }; public:
2727
Option<std::string> logDir{ this, "--log-dir", "", "Enable logging to a file in the specified directory" };
2828
Option<std::string> logPipeName{ this, "--log-pipe-name", pmon::gid::defaultLogPipeBaseName, "Name of the pipe to connect to for log IPC" };
29-
Flag enableStdioLog{ this, "--enable-stdio-log", "Disable logging to stderr" };
30-
Flag enableDebuggerLog{ this, "--enable-debugger-log", "Disable logging to system debugger" };
29+
Flag enableStdioLog{ this, "--enable-stdio-log", "Enable logging to stderr" };
30+
Flag enableDebuggerLog{ this, "--enable-debugger-log", "Enable logging to system debugger" };
3131
Flag disableIpcLog{ this, "--disable-ipc-log", "Disable logging to named pipe connection" };
3232
Option<Level> logLevel{ this, "--log-level", Level::Error, "Severity to log at", logLevelTf_ };
3333

PresentMonService.args.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"FileVersion": 2,
3+
"Id": "3a848e5b-a376-4a22-bbac-e9b3c01bd385",
4+
"Items": [
5+
{
6+
"Id": "c0207ae5-487c-4379-8ccb-e99281ade16e",
7+
"Command": "--help"
8+
},
9+
{
10+
"Id": "46830a22-a458-47b3-8cd4-fac8922d0536",
11+
"Command": "--log-level debug"
12+
},
13+
{
14+
"Id": "80017c67-ee0b-4ff6-b9d0-39bdd10d7aeb",
15+
"Command": "--enable-stdio-log"
16+
},
17+
{
18+
"Id": "35bb5efb-dfde-4996-8cf9-ab057c4afb48",
19+
"Command": "--enable-debugger-log"
20+
},
21+
{
22+
"Id": "f3d08422-5d9f-4dfe-bf6e-e88d0ecfe432",
23+
"Command": "--etw-session-name PM_SVC_ETW_SESH"
24+
},
25+
{
26+
"Id": "7cfc715b-6bae-47ee-9dfb-c4239fa3ac48",
27+
"Command": "--control-pipe \\\\.\\pipe\\eff"
28+
},
29+
{
30+
"Id": "bc1dd7da-c628-48fe-b073-19c243473c15",
31+
"Command": "--intro-nsm pm_my_intro"
32+
},
33+
{
34+
"Id": "17589058-a147-412f-b7ba-0ef6f8c4ad08",
35+
"Command": "--nsm-prefix pm_my_nsm"
36+
},
37+
{
38+
"Id": "aafe8ea9-f424-4996-9b6d-109bd2a76f40",
39+
"Command": "--disable-ipc-log"
40+
}
41+
]
42+
}

0 commit comments

Comments
 (0)