Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ba3f23bad4b3956a3d42bb04d21dc3f24d0384c3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

update logging

pull/702/head
Luke Pulverenti 10 years ago
parent 7291b8d3e4
commit ba3f23bad4

@ -144,7 +144,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
if (item != null)
{
_logger.Debug("Cleaning item {0} type: {1} path: {2}", item.Name, item.GetType().Name, item.Path ?? string.Empty);
_logger.Info("Cleaning item {0} type: {1} path: {2}", item.Name, item.GetType().Name, item.Path ?? string.Empty);
await _libraryManager.DeleteItem(item, new DeleteOptions
{
@ -198,6 +198,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
continue;
}
_logger.Info("Deleting item from database {0} because path no longer exists. type: {1} path: {2}", libraryItem.Name, libraryItem.GetType().Name, libraryItem.Path ?? string.Empty);
await _libraryManager.DeleteItem(libraryItem, new DeleteOptions
{
DeleteFileLocation = false

Loading…
Cancel
Save