From 4058721e9ab3a1059f6791bd1ebdae5108c4d46c Mon Sep 17 00:00:00 2001 From: groot Date: Sun, 14 Apr 2019 20:43:51 +0800 Subject: [PATCH] remove megawise text Former-commit-id: c930f828393902b69a71516d9a966a95596409f4 --- cpp/src/server/Server.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cpp/src/server/Server.cpp b/cpp/src/server/Server.cpp index 8e9a68c8..6d5aa7ca 100644 --- a/cpp/src/server/Server.cpp +++ b/cpp/src/server/Server.cpp @@ -47,7 +47,7 @@ Server::Daemonize() { return; } - CommonUtil::PrintInfo("Megawise server run in daemonize mode"); + CommonUtil::PrintInfo("Vecwise server run in daemonize mode"); // std::string log_path(GetLogDirFullPath()); // log_path += "zdb_server.(INFO/WARNNING/ERROR/CRITICAL)"; @@ -156,10 +156,10 @@ Server::Start() { StartService(); - CommonUtil::PrintInfo("Megawise server is running..."); + CommonUtil::PrintInfo("Vecwise server is running..."); } catch(std::exception& ex){ - std::string info = "Megawise server encounter exception: " + std::string(ex.what()); + std::string info = "Vecwise server encounter exception: " + std::string(ex.what()); CommonUtil::PrintError(info); CommonUtil::PrintInfo("Is another server instance running?"); @@ -173,7 +173,7 @@ Server::Start() { void Server::Stop() { - CommonUtil::PrintInfo("Megawise server will be closed"); + CommonUtil::PrintInfo("Vecwise server will be closed"); // Unlock and close lockfile if (pid_fd != -1) { @@ -200,7 +200,7 @@ Server::Stop() { StopService(); - CommonUtil::PrintInfo("Megawise server closed"); + CommonUtil::PrintInfo("Vecwise server closed"); } -- GitLab