From 92061631900871ce7d480832b18c2c398fe682ad Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sat, 16 Dec 2023 00:44:25 -0600 Subject: [PATCH] [Database] Make it clearer to users that a database backup is occurring (#3769) --- common/database/database_dump_service.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/database/database_dump_service.cpp b/common/database/database_dump_service.cpp index be55159d6..2280e3dfb 100644 --- a/common/database/database_dump_service.cpp +++ b/common/database/database_dump_service.cpp @@ -322,6 +322,10 @@ void DatabaseDumpService::DatabaseDump() pipe_file ); + LogInfo("Backing up database [{}]", execute_command); + LogInfo("This can take a few minutes depending on the size of your database"); + LogInfo("LOADING... PLEASE WAIT..."); + BuildCredentialsFile(); std::string execution_result = Process::execute(execute_command); if (!execution_result.empty() && IsDumpOutputToConsole()) {