@@ -432,16 +432,16 @@ public void InstallPlugin(UserPlugin plugin, string zipFilePath) =>
432
432
public Task UninstallPluginAsync ( PluginMetadata pluginMetadata , bool removePluginSettings = false ) =>
433
433
PluginManager . UninstallPluginAsync ( pluginMetadata , removePluginSettings ) ;
434
434
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 = "" ) =>
436
436
Stopwatch . Debug ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
437
437
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 = "" ) =>
439
439
Stopwatch . DebugAsync ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
440
440
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 = "" ) =>
442
442
Stopwatch . Normal ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
443
443
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 = "" ) =>
445
445
Stopwatch . NormalAsync ( $ "|{ className } .{ methodName } |{ message } ", action ) ;
446
446
447
447
#endregion
0 commit comments