NetTalk Central

Author Topic: Logging file errors  (Read 6025 times)

CaseyR

  • Sr. Member
  • ****
  • Posts: 448
    • View Profile
    • Email
Logging file errors
« on: November 01, 2007, 09:15:10 AM »
Hi,

I would like to record any file errors in a log file for support purposes.  I know I can overide the standard MESSAGE behavour on the server using system{PROP:MessageHook} which would give me the errorcode() and error(). But how would I get the file name or the problem procedure from such an override?

This, of course, assumes there isn't a way to capture such file errors from within NetTalk already and I have just not recognized it.

Many thanks.

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11297
    • View Profile
Re: Logging file errors
« Reply #1 on: November 01, 2007, 10:29:01 PM »
Hi Casey,

In the message procedure you can use
GlobalErrors.GetProcedureName()
to get the name of the procedure that triggered the error.

Typically a file message will include the name of the file.

Cheers
Bruce

CaseyR

  • Sr. Member
  • ****
  • Posts: 448
    • View Profile
    • Email
Re: Logging file errors
« Reply #2 on: November 02, 2007, 10:56:54 AM »
Thanks, Bruce.