Display the name of the shared object in SLib destructor to aid in debugging unload order.

git-svn-id: http://yate.null.ro/svn/yate/trunk@3045 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2010-01-30 20:33:11 +00:00
parent 91f9b41323
commit f449fd6d51
1 changed files with 1 additions and 1 deletions

View File

@ -866,7 +866,7 @@ SLib::SLib(HMODULE handle, const char* file, bool nounload)
SLib::~SLib()
{
#ifdef DEBUG
Debugger debug("SLib::~SLib()"," [%p]",this);
Debugger debug("SLib::~SLib()"," '%s' [%p]",c_str(),this);
#endif
if (s_nounload || m_nounload) {
#ifdef _WINDOWS