diff options
author | madmaxoft <github@xoft.cz> | 2013-10-18 12:50:35 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-18 12:50:50 +0200 |
commit | e6bb025a9fc0beafc65aa8131d8836105b3b2943 (patch) | |
tree | 5df6abd658c726893f3eaa594dc474f1a0c05072 /source/WebAdmin.cpp | |
parent | Merge pull request #253 from SamJBarney/master (diff) | |
download | cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar.gz cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar.bz2 cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar.lz cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar.xz cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.tar.zst cuberite-e6bb025a9fc0beafc65aa8131d8836105b3b2943.zip |
Diffstat (limited to '')
-rw-r--r-- | source/WebAdmin.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source/WebAdmin.cpp b/source/WebAdmin.cpp index 316513f11..393e5ce52 100644 --- a/source/WebAdmin.cpp +++ b/source/WebAdmin.cpp @@ -53,6 +53,18 @@ cWebAdmin::cWebAdmin(void) : +cWebAdmin::~cWebAdmin() +{ + if (m_IsInitialized) + { + LOG("Stopping WebAdmin..."); + } +} + + + + + void cWebAdmin::AddPlugin( cWebPlugin * a_Plugin ) { m_Plugins.remove( a_Plugin ); @@ -79,6 +91,8 @@ bool cWebAdmin::Init(void) return false; } + LOG("Initialising WebAdmin..."); + if (!m_IniFile.GetValueSetB("WebAdmin", "Enabled", true)) { // WebAdmin is disabled, bail out faking a success @@ -108,6 +122,8 @@ bool cWebAdmin::Start(void) return false; } + LOG("Starting WebAdmin..."); + // Initialize the WebAdmin template script and load the file m_TemplateScript.Create(); if (!m_TemplateScript.LoadFile(FILE_IO_PREFIX "webadmin/template.lua")) |