diff options
| author | 2006-08-11 12:15:03 +0000 | |
|---|---|---|
| committer | 2006-08-11 12:15:03 +0000 | |
| commit | d17465716790010b6e3221f9ce49272110276ccf (patch) | |
| tree | d929b9c717e789d818d0eefbfe6e018974ae48f6 /src/dynamic.cpp | |
| parent | Move all of the xline stuff into class XLineManager, make an instance of it i... (diff) | |
Now two types of log macro, log() and ilog(). log() assumes an InspIRCd object called ServerInstance, ilog() takes an InspIRCd object as first param.
TODO: Run a regexp over these, using perl, to translate them into InspIRCd::Log calls and then eliminate the macro :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4879 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dynamic.cpp')
| -rw-r--r-- | src/dynamic.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dynamic.cpp b/src/dynamic.cpp index 23e1e3267..e773f8363 100644 --- a/src/dynamic.cpp +++ b/src/dynamic.cpp @@ -138,12 +138,10 @@ DLLManager::~DLLManager() bool DLLManager::GetSymbol(initfunc* &v, const char *sym_name) { - log(DEBUG,"Symbol search..."); for (int j = 0; modsyms[j].name; j++) { if (!strcmp(this->staticname,modsyms[j].name)) { - log(DEBUG,"Loading symbol..."); v = modsyms[j].value; err = 0; return true; @@ -162,7 +160,6 @@ bool DLLManager::GetSymbol(void** v, const char* sym_name) if (h) { - log(DEBUG,"Found symbol %s", sym_name); dlerror(); // clear value *v = dlsym(h, sym_name); err = (char*)dlerror(); |
