@@ -432,16 +432,16 @@ public void InstallPlugin(UserPlugin plugin, string zipFilePath) =>
432432 public Task UninstallPluginAsync ( PluginMetadata pluginMetadata , bool removePluginSettings = false ) =>
433433 PluginManager . UninstallPluginAsync ( pluginMetadata , removePluginSettings ) ;
434434
435- public long StopWatchLogDebug ( string className , string message , Action action , [ CallerMemberName ] string methodName = "" ) =>
435+ public long StopwatchLogDebug ( string className , string message , Action action , [ CallerMemberName ] string methodName = "" ) =>
436436 Stopwatch . Debug ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
437437
438- public Task < long > StopWatchLogDebugAsync ( string className , string message , Func < Task > action , [ CallerMemberName ] string methodName = "" ) =>
438+ public Task < long > StopwatchLogDebugAsync ( string className , string message , Func < Task > action , [ CallerMemberName ] string methodName = "" ) =>
439439 Stopwatch . DebugAsync ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
440440
441- public long StopWatchLogInfo ( string className , string message , Action action , [ CallerMemberName ] string methodName = "" ) =>
441+ public long StopwatchLogInfo ( string className , string message , Action action , [ CallerMemberName ] string methodName = "" ) =>
442442 Stopwatch . Normal ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
443443
444- public Task < long > StopWatchLogInfoAsync ( string className , string message , Func < Task > action , [ CallerMemberName ] string methodName = "" ) =>
444+ public Task < long > StopwatchLogInfoAsync ( string className , string message , Func < Task > action , [ CallerMemberName ] string methodName = "" ) =>
445445 Stopwatch . NormalAsync ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
446446
447447 #endregion
0 commit comments