NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Jim A on April 01, 2013, 10:24:54 AM

Title: Debugview quit working
Post by: Jim A on April 01, 2013, 10:24:54 AM
I rely heavily on debugview to see what's happening behind the scenes.  All at once, it no longer shows the messages coming from my NTWS app.  I reinstalled debugview, but no joy.

I'm using 7.07 under C6 if that matters.

Thanks.
Title: Re: Debugview quit working
Post by: Rene Simons on April 01, 2013, 01:55:26 PM
Hi Jim,

Do you have anynfiltering active in debugview?

Rene
Title: Re: Debugview quit working
Post by: Jim A on April 01, 2013, 01:57:01 PM
No, not that I'm aware of.  When I check the Filter settings, it's same as usual;  *.

Thanks.
Title: Re: Debugview quit working
Post by: Poul on April 01, 2013, 02:01:39 PM
did you untick or change  any of the logging options on your nettalk Global extension?
Title: Re: Debugview quit working
Post by: Jim A on April 01, 2013, 02:10:50 PM
Thanks Poul, that's it. I appreciate having a lot of options -- just have trouble remembering where everything is.

Much obliged.
Title: Re: Debugview quit working
Post by: CaseyR on April 04, 2013, 10:51:48 AM
I have the same problem after updating to NT 7 (7.07) and StringTheory 1.77.    The problem appears to be limited the p_web._Trace, since dll and object messages appear in Debugview .    I have tried different options in the Log File tab of the NT Global Extension without getting any of the p_web._Trace messages to appear.    The NT documentation doesn't cover the Log File tab so I have left it with just Add NetTalk => 1 define turned on.   That define is showing in the Conditional Compile Symbols.

I suspect its a bug in StringTheory, but if anyone has another solution it would be greatly appreciated.

Many thanks.
Title: Re: Debugview quit working
Post by: estadok on April 05, 2013, 03:29:24 AM
Same problem... :( _Trace() doesn't work
Title: Re: Debugview quit working
Post by: terryd on April 08, 2013, 11:26:02 PM
Me too
Title: Re: Debugview quit working
Post by: robirenz on April 09, 2013, 08:21:11 AM
so how do we get debugview to work again, I don't get the trace either...
Title: Re: Debugview quit working
Post by: Larry Sand on April 09, 2013, 02:13:06 PM
Open StringTheory.clw and go to about line 1912 and you should see:

  stOutPutDebugString(szMsg)

Change it to:

  stOutPutDebugString(pMsg)

Here's the entire trace method:

StringTheory.Trace Procedure(<string errMsg>)
szMsg         cString(len(errMsg)+6)
pMsg          &Cstring
  code
    if omitted(2) 
        pMsg &= new cstring(self.LengthA()+6)
        pMsg = '[st] ' & self.GetValue()
        stOutPutDebugString(pMsg)
        dispose(pMsg)
    else
        szMsg = '[st] ' & Clip(errMsg)
        stOutPutDebugString(szMsg)
    end


Note that one call to outputdebugstring() uses pMsg and the other uses szMsg.

Larry Sand
Title: Re: Debugview quit working
Post by: Bruce on April 10, 2013, 12:52:09 AM
Hi Larry,

thanks for the post.

cheers
Bruce
Title: Re: Debugview quit working
Post by: Larry Sand on April 10, 2013, 12:27:03 PM
Hey Bruce,
You're welcome.
Larry Sand