diff options
author | George Hazan <ghazan@miranda.im> | 2023-01-15 18:11:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-01-15 18:11:31 +0300 |
commit | cd39c177794b109e810d0cfc6a7307208492003b (patch) | |
tree | 5c2f82e376c859d38299463251b48e74d2df994a /plugins | |
parent | de7b4746279d359674f0cbdf1f90949f438db778 (diff) |
fixes #3301 (CrashDumper: add info about the log used to the Version Info report)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CrashDumper/src/dumper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/CrashDumper/src/dumper.cpp b/plugins/CrashDumper/src/dumper.cpp index c4c3b9f815..f328ddabb5 100644 --- a/plugins/CrashDumper/src/dumper.cpp +++ b/plugins/CrashDumper/src/dumper.cpp @@ -142,6 +142,9 @@ static void GetPluginsString(CMStringW &buffer, unsigned &flags) {
buffer.AppendFormat(L"Service Mode: %s\r\n", g_plugin.bServiceMode ? L"Yes" : L"No");
+ CMStringW szViewerName(db_get_wsm(0, "SRMM", "Logger", L"built-in"));
+ buffer.AppendFormat(L"SRMM Log Viewer: %s\r\n", szViewerName.c_str());
+
wchar_t path[MAX_PATH];
GetModuleFileName(nullptr, path, MAX_PATH);
|