Skip to content

Commit

Permalink
Set loglevel to warning in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic committed Mar 16, 2024
1 parent c73a28e commit 23ab0db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-csharp/Tests/Vla.Tests/Engine/NodeEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private static Vla.Engine.NodeEngine CreateEngine()
.ConfigureLogging(l =>
{
l.AddConsole();
l.SetMinimumLevel(LogLevel.Trace);
l.SetMinimumLevel(LogLevel.Warning);
})
.Build()
.Services;
Expand Down
2 changes: 1 addition & 1 deletion src-csharp/Tests/Vla.Tests/Nodes/NodeService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private Vla.Nodes.NodeService CreateNodeService()
.ConfigureLogging(l =>
{
l.AddConsole();
l.SetMinimumLevel(LogLevel.Trace);
l.SetMinimumLevel(LogLevel.Warning);
})
.Build()
.Services;
Expand Down
2 changes: 1 addition & 1 deletion src-csharp/Tests/Vla.Tests/Server/ServerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public void Deconstruct(out string Id)
.ConfigureLogging(l =>
{
l.AddConsole();
l.SetMinimumLevel(LogLevel.Trace);
l.SetMinimumLevel(LogLevel.Warning);
})
.Build()
.Services;
Expand Down
2 changes: 1 addition & 1 deletion src-csharp/Tests/Vla.Tests/Server/WorkspaceService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private Workspace.WorkspaceService CreateWorkspaceService()
.ConfigureLogging(l =>
{
l.AddConsole();
l.SetMinimumLevel(LogLevel.Trace);
l.SetMinimumLevel(LogLevel.Warning);
})
.Build()
.Services;
Expand Down

0 comments on commit 23ab0db

Please sign in to comment.