Skip to content

Commit 2bd0168

Browse files
committed
Fix issue #610
1 parent ad2bf9d commit 2bd0168

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

‎Torch/Plugins/PluginManager.cs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ private bool DownloadPluginUpdates(List<PluginItem> plugins)
326326
{
327327
if (!item.IsZip)
328328
{
329-
_log.Warn($"Unzipped plugins cannot be auto-updated. Skipping plugin {item}");
329+
_log.Warn($"Unzipped plugins cannot be auto-updated. Skipping plugin '{item.Manifest.Name}'");
330330
return;
331331
}
332332

@@ -336,7 +336,7 @@ private bool DownloadPluginUpdates(List<PluginItem> plugins)
336336

337337
if (latest?.LatestVersion == null)
338338
{
339-
_log.Warn($"Plugin {item.Manifest.Name} does not have any releases on torchapi.com. Cannot update.");
339+
_log.Warn($"Plugin '{item.Manifest.Name}' does not have any releases on torchapi.com. Cannot update.");
340340
return;
341341
}
342342

@@ -361,7 +361,7 @@ private bool DownloadPluginUpdates(List<PluginItem> plugins)
361361
}
362362
catch (Exception e)
363363
{
364-
_log.Warn($"An error occurred updating the plugin {item.Manifest.Name}.");
364+
_log.Warn($"An error occurred updating the plugin '{item.Manifest.Name}'.");
365365
_log.Warn(e);
366366
}
367367
}).ToArray());

0 commit comments

Comments
 (0)