mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
Improve error tracing in migrate app data folder
(cherry picked from commit 5ef6145db350df36507b3efaf1f8f412c1a13779)
This commit is contained in:
parent
64b2a10b3f
commit
554a54b009
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ private void MigrateAppDataFolder()
|
|||
catch (Exception ex)
|
||||
{
|
||||
_logger.Debug(ex, ex.Message);
|
||||
throw new RadarrStartupException("Unable to migrate DB from nzbdrone.db to {0}. Migrate manually", _appFolderInfo.GetDatabase());
|
||||
throw new RadarrStartupException(ex, "Unable to migrate DB from nzbdrone.db to {0}. Migrate manually", _appFolderInfo.GetDatabase());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue