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
_portOption=newOption<int?>("--port","The port for the proxy server to listen on");
@@ -23,18 +24,21 @@ public ProxyHost() {
23
24
input.ErrorMessage=$"{input.Tokens.First().Value} is not a valid log level. Allowed values are: {string.Join(", ",Enum.GetNames(typeof(LogLevel)))}";
24
25
}
25
26
});
27
+
28
+
_recordOption=newOption<bool?>("--record","Use this option to record all request logs");
26
29
}
27
30
28
31
publicRootCommandGetRootCommand(){
29
32
varcommand=newRootCommand{
30
33
_portOption,
31
-
_logLevelOption
34
+
_logLevelOption,
35
+
_recordOption
32
36
};
33
37
command.Description="Microsoft Graph Developer Proxy is a command line tool that simulates real world behaviors of Microsoft Graph and other APIs, locally.";
0 commit comments