From 554a54b0093d0ce3071a8f82cc6dea9271832f8c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 21 Sep 2025 18:43:40 +0300 Subject: [PATCH] Improve error tracing in migrate app data folder (cherry picked from commit 5ef6145db350df36507b3efaf1f8f412c1a13779) --- src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs b/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs index 55dfb4530f..3b1ba4af99 100644 --- a/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs +++ b/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs @@ -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()); } }