diff --git a/src/Serilog.Sinks.Loggly/Sinks/Loggly/LogglySink.cs b/src/Serilog.Sinks.Loggly/Sinks/Loggly/LogglySink.cs
index 983c525..149fc1b 100644
--- a/src/Serilog.Sinks.Loggly/Sinks/Loggly/LogglySink.cs
+++ b/src/Serilog.Sinks.Loggly/Sinks/Loggly/LogglySink.cs
@@ -42,6 +42,16 @@ public class LogglySink : PeriodicBatchingSink
///
public static readonly TimeSpan DefaultPeriod = TimeSpan.FromSeconds(5);
+ ///
+ /// Construct a sink that saves logs to the specified storage account. Properties are being send as data and the level is used as tag.
+ ///
+ /// The maximum number of events to post in a single batch.
+ /// The time to wait between checking for event batches.
+ /// Supplies culture-specific formatting information, or null.
+ public LogglySink(IFormatProvider formatProvider, int batchSizeLimit, TimeSpan period) : this(formatProvider, batchSizeLimit, period, null, null)
+ {
+ }
+
///
/// Construct a sink that saves logs to the specified storage account. Properties are being send as data and the level is used as tag.
///