summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src/main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-09-14 14:47:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-09-14 14:47:56 +0000
commit662c4b333d83c70ae05fbcea2dd685e6a3524983 (patch)
tree6eeeb427b334025091d46b4b4944f9cfc5b81c27 /plugins/SmileyAdd/src/main.cpp
parent115e8a733f0e265f1197fb9a3b894ffa0af1aad8 (diff)
address logging for smileys
git-svn-id: http://svn.miranda-ng.org/main/trunk@6058 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd/src/main.cpp')
-rw-r--r--plugins/SmileyAdd/src/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/main.cpp b/plugins/SmileyAdd/src/main.cpp
index f8ee1407a1..b9ac55fb91 100644
--- a/plugins/SmileyAdd/src/main.cpp
+++ b/plugins/SmileyAdd/src/main.cpp
@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//globals
HINSTANCE g_hInst;
-HANDLE hEvent1;
+HANDLE hEvent1, hLogger;
HGENMENU hContactMenuItem;
char* metaProtoName;
@@ -89,7 +89,6 @@ extern "C" __declspec(dllexport) int Load(void)
if (ServiceExists(MS_SMILEYADD_REPLACESMILEYS)) {
ReportError(TranslateT("Only one instance of SmileyAdd could be executed.\nRemove duplicate instances from 'Plugins' directory"));
-
return 1;
}
@@ -99,6 +98,11 @@ extern "C" __declspec(dllexport) int Load(void)
opt.Load();
+ // initialize log
+ TCHAR szLogFileName[MAX_PATH];
+ mir_sntprintf(szLogFileName, MAX_PATH, _T("%s\\smiley.log"), VARST(_T("%miranda_profile%")));
+ hLogger = mir_createLog("smileys", _T("Crash log"), szLogFileName, 0);
+
// create smiley events
hEvent1 = CreateHookableEvent(ME_SMILEYADD_OPTIONSCHANGED);