Skip to content

Commit

Permalink
docs(src/plugincore.aspnetcore/backgroundservices/plugintimejobbackgr…
Browse files Browse the repository at this point in the history
…oundservice.cs): log

{pluginKey}:
  • Loading branch information
yiyungent committed Mar 14, 2024
1 parent 9e66363 commit e700253
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected override void DoWork(object state)
if (nowTime - lastExecuteTime >= item.SecondsPeriod)
{
// 调用
Utils.LogUtil.Info<PluginTimeJobBackgroundService>($"{pluginKey} {nameof(ITimeJobPlugin)}.{nameof(ITimeJobPlugin.ExecuteAsync)}");
Utils.LogUtil.Info<PluginTimeJobBackgroundService>($"{pluginKey}: {nameof(ITimeJobPlugin)}.{nameof(ITimeJobPlugin.ExecuteAsync)}");
Task task = item?.ExecuteAsync();
this._pluginAndLastExecuteTimeDic[pluginKey] = DateTime.Now.ToTimeStamp10();
}
Expand Down

0 comments on commit e700253

Please sign in to comment.