From e1923bc07f8dfcbb5c5e6f2cd9474b8d17b2eecb Mon Sep 17 00:00:00 2001 From: lllucius Date: Mon, 7 Mar 2011 01:46:05 +0000 Subject: [PATCH] Getting there...a little more info is needed. --- src/export/ExportMP3.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/export/ExportMP3.cpp b/src/export/ExportMP3.cpp index 4ce9e022f..7b7710a67 100644 --- a/src/export/ExportMP3.cpp +++ b/src/export/ExportMP3.cpp @@ -1325,8 +1325,14 @@ wxString MP3Exporter::GetLibraryPath() wxString path; if (reg.Exists()) { + wxLogMessage(wxT("LAME registry key exists.")); reg.QueryValue(wxT("InstallPath"), path); } + else { + wxLogMessage(wxT("LAME registry key does not exist.")); + } + + wxLogMessage(wxT("Library path is: ") + path); return path; }