Skip to content

Commit 1f0de20

Browse files
Updates communicating updating MSGraphDB (#329)
1 parent 530b357 commit 1f0de20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

m365-developer-proxy/MSGraphDbCommandHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,13 @@ private static async Task UpdateOpenAPIGraphFilesIfNecessary(string folder, ILog
160160
}
161161

162162
var url = $"https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/{version}/openapi.yaml";
163-
logger.LogDebug($"Downloading OpenAPI file from {url}...");
163+
logger.LogInfo($"Downloading OpenAPI file from {url}...");
164164

165165
var client = new HttpClient();
166166
var response = await client.GetStringAsync(url);
167167
File.WriteAllText(file.FullName, response);
168168

169-
logger.LogInfo($"Downloaded OpenAPI file from {url} to {file}");
169+
logger.LogDebug($"Downloaded OpenAPI file from {url} to {file}");
170170
}
171171
catch (Exception ex)
172172
{

0 commit comments

Comments
 (0)