Skip to content

Commit

Permalink
[add] console output
Browse files Browse the repository at this point in the history
  • Loading branch information
i4004 committed Feb 11, 2023
1 parent b82de8d commit 859d925
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/TestServer/Controllers/Api/v1/TestInController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ public override async Task<ControllerResponse> Invoke()
var fileData = await stream.ReadToEndAsync();

Trace.WriteLine($"Files count: '{Model.Files.Count}'");
Console.WriteLine($"Files count: '{Model.Files.Count}'");

Trace.WriteLine($"File name: '{file.FileName}'");
Console.WriteLine($"File name: '{file.FileName}'");

Trace.WriteLine($"File content: '{fileData}'");
Console.WriteLine($"File content: '{fileData}'");

// Assert

Expand Down

0 comments on commit 859d925

Please sign in to comment.