From d30547766d4a1cab9bcb0beab50a16764da3b579 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 13 Jan 2018 11:51:36 -0500 Subject: [PATCH] Core/Database: Get rid of exception and just print the file the errored. --- Source/Framework/Database/DatabaseUpdater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Framework/Database/DatabaseUpdater.cs b/Source/Framework/Database/DatabaseUpdater.cs index ed5efbbaf..5504673f3 100644 --- a/Source/Framework/Database/DatabaseUpdater.cs +++ b/Source/Framework/Database/DatabaseUpdater.cs @@ -256,7 +256,7 @@ namespace Framework.Database // Update database if (!_database.ApplyFile(path)) - throw new Exception("Update Failed"); + Log.outError(LogFilter.Sql, $"Update: {path} Failed."); // Return time the query took to apply return Time.GetMSTimeDiffToNow(oldMSTime);