Annoying CWndGuild errors

05/19/2018 14:15 Minotaurr#1
Hello Elitepvpers!

In my client every time I open the Guild window it generates this message. Everything is working perfectly but only this message pops up.

Code:
2018/ 5/19   14:11:28   CWndGuild::CWndGuild()

2018/ 5/19   14:11:28   CWndGuild::Initialize() - IN

2018/ 5/19   14:11:28   CWndGuild::OnInitialUpdate() - IN

2018/ 5/19   14:11:28   CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - IN

2018/ 5/19   14:11:28   CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - OUT

2018/ 5/19   14:11:28   CWndGuild::OnInitialUpdate() - OUT

2018/ 5/19   14:11:28   CWndGuild::Initialize() - OUT
I've found this on source, but can't get alot information from it....

Code:
CWndGuild::CWndGuild() 
{ 
	Error( "CWndGuild::CWndGuild()" );
} 

and

void CWndGuild::OnInitialUpdate() 
{ 
	Error( "CWndGuild::OnInitialUpdate() - IN" );
	Error( "CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - IN" );
	CWndNeuz::OnInitialUpdate(); 
	Error( "CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - OUT" );
	// ¿©±â¿¡ ÄÚµùÇϼ¼¿ä
Is there anyone around here who knows this?

Thanks!
Minotaurr
05/19/2018 14:53 pDestroyer#2
It's an useless error, you can remove it. It's just a temp log on open guild applet
05/19/2018 16:02 Dr. Peacock#3
Code:
CWndGuild::CWndGuild() 
{ 
	//Error( "CWndGuild::CWndGuild()" );
} 

and

void CWndGuild::OnInitialUpdate() 
{ 
	//Error( "CWndGuild::OnInitialUpdate() - IN" );
	//Error( "CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - IN" );
	CWndNeuz::OnInitialUpdate(); 
	//Error( "CWndGuild::OnInitialUpdate(CWndNeuz::OnInitialUpdate()) - OUT" );
05/19/2018 18:49 Minotaurr#4
Quote:
Originally Posted by pDestroyer View Post
It's an useless error, you can remove it. It's just a temp log on open guild applet

Thanks man! Fixed now :)

#closerequest