Skip to content

Commit 7be3eee

Browse files
Fixes name references after rename (#410)
1 parent d5bc696 commit 7be3eee

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

dev-proxy/ProxyCommandHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public async Task<int> InvokeAsync(InvocationContext context) {
8383

8484
var newReleaseInfo = await UpdateNotification.CheckForNewVersion();
8585
if (newReleaseInfo != null) {
86-
_logger.LogError($"New version {newReleaseInfo.Version} of the Graph Developer Proxy is available.");
86+
_logger.LogError($"New Dev Proxy version {newReleaseInfo.Version} is available.");
8787
_logger.LogError($"See https://aka.ms/devproxy/upgrade for more information.");
8888
_logger.LogError(string.Empty);
8989
}
@@ -93,7 +93,7 @@ public async Task<int> InvokeAsync(InvocationContext context) {
9393
return 0;
9494
}
9595
catch (Exception ex) {
96-
_logger.LogError("An error occurred while running the Developer Proxy");
96+
_logger.LogError("An error occurred while running Dev Proxy");
9797
_logger.LogError(ex.Message.ToString());
9898
_logger.LogError(ex.StackTrace?.ToString() ?? string.Empty);
9999
var inner = ex.InnerException;

specs/recording-requests.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Record request logging
22

3-
Record request logging allows Developer Proxy to capture request logging activities that occurred while the proxy was in record mode. The captured request logging items are passed for further processing to the Developer Proxy plugins. This feature is foundational for scenarios such as permission analysis, building tailored SDKs, audit reports, etc.
3+
Record request logging allows Dev Proxy to capture request logging activities that occurred while the proxy was in record mode. The captured request logging items are passed for further processing to the Dev Proxy plugins. This feature is foundational for scenarios such as permission analysis, building tailored SDKs, audit reports, etc.
44

55
## History
66

@@ -10,12 +10,12 @@ Record request logging allows Developer Proxy to capture request logging activit
1010

1111
## Implementation
1212

13-
Developer Proxy can be put in recording mode either by using the `--record` command line option or by pressing `r` after starting the proxy. Recording can be stopped by pressing `s` while running the proxy or by closing the proxy using `CTRL+C`. While recording is stopped and the proxy is running, users can start a new recording session by pressing `r` again.
13+
Dev Proxy can be put in recording mode either by using the `--record` command line option or by pressing `r` after starting the proxy. Recording can be stopped by pressing `s` while running the proxy or by closing the proxy using `CTRL+C`. While recording is stopped and the proxy is running, users can start a new recording session by pressing `r` again.
1414

15-
While recording, Developer Proxy will show an indicator in the terminal window. The indicator will be displayed in the top right corner of the window and will be hidden if the proxy is not recording.
15+
While recording, Dev Proxy will show an indicator in the terminal window. The indicator will be displayed in the top right corner of the window and will be hidden if the proxy is not recording.
1616

1717
Proxy is recording requests by subscribing to a `RequestLogged` event which is raised each time proxy logged a request-related log message. The event contains information about the logged message.
1818

19-
After the recording is stopped, Developer Proxy will raise the `RecordingStopped` event. Plugins can subscribe to this event to process the captured requests.
19+
After the recording is stopped, Dev Proxy will raise the `RecordingStopped` event. Plugins can subscribe to this event to process the captured requests.
2020

21-
Recording is a core feature of Developer Proxy and will be implemented in the main proxy code.
21+
Recording is a core feature of Dev Proxy and will be implemented in the main proxy code.

0 commit comments

Comments
 (0)