Skip to content

Commit

Permalink
Merge branch 'add-logging-mode-settings' into 'master'
Browse files Browse the repository at this point in the history
feat: add LoggingMode for cluster client logging settings

See merge request vostok-libraries/singular.core!6
  • Loading branch information
Lunev.d committed Feb 27, 2024
2 parents 2fa370f + 9c18451 commit 9f32c09
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Vostok.Singular.Core/Configuration/SingularSettings.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Net.WebSockets;
using Vostok.Clusterclient.Core.Misc;
using Vostok.Clusterclient.Core.Model;
using Vostok.Configuration.Primitives;
using Vostok.Singular.Core.PathPatterns.BlackList.Settings;
Expand Down Expand Up @@ -559,6 +560,8 @@ public class LoggingOptions
public bool LogReplicaRequests { get; set; } = true;

public bool LogReplicaResults { get; set; } = true;

public LoggingMode LoggingMode { get; set; } = LoggingMode.Detailed;
}
}
}

0 comments on commit 9f32c09

Please sign in to comment.