fix(*): Add missing argument

This commit is contained in:
Josh Creek
2021-12-14 18:54:03 +00:00
parent a44420e81d
commit d8ab65334a
2 changed files with 3 additions and 3 deletions
@@ -19,8 +19,8 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile> <PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<PackageTags>creek</PackageTags> <PackageTags>creek</PackageTags>
<Version>1.4.0</Version> <Version>1.4.1</Version>
<AssemblyVersion>1.4.0.0</AssemblyVersion> <AssemblyVersion>1.4.0.1</AssemblyVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -53,6 +53,6 @@ namespace Creek.HelpfulExtensions
public static class DisposableStopWatchExtension public static class DisposableStopWatchExtension
{ {
public static DisposableStopWatch DisposableStopWatch(this ILogger logger, string msg = null) => new DisposableStopWatch(logger, msg); public static DisposableStopWatch DisposableStopWatch(this ILogger logger, string message = null, bool useConsole = false) => new DisposableStopWatch(logger, message, useConsole);
} }
} }