From 4aa26f7373ccaadfd0a47198975afe6bbef5cd1d Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 24 Aug 2009 17:35:50 +0200 Subject: LOGGER: return valid uri of the log file on succes --- lib/Plugins/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Plugins/Logger.cpp') diff --git a/lib/Plugins/Logger.cpp b/lib/Plugins/Logger.cpp index fc96dca..72e0088 100644 --- a/lib/Plugins/Logger.cpp +++ b/lib/Plugins/Logger.cpp @@ -135,7 +135,7 @@ std::string CLogger::Report(const map_crash_report_t& pCrashReport, const std::s { throw CABRTException(EXCEP_PLUGIN, "CLogger::Report(): Cannot open file: " + m_sLogPath); } - return "Report was stored into: " + m_sLogPath; + return "file://" + m_sLogPath; } PLUGIN_INFO(REPORTER, -- cgit