TextPipe engine is always writing to an (unwanted) log file
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
TextPipe engine is always writing to an (unwanted) log file
The TextPipe Engine is creating a log file C:\AEMAIL\DATAMYSTIC.LOG every time it's run. Where is that coming from, and can it be disabled?
Re: TextPipe engine is always writing to an (unwanted) log f
I poked around a bit, and found that the "c:\aemail" directory and the "datamystic.log" file were being created at shutdown. Apparently it's in the textpipeengine.dll shutdown code, because I can't do anything to avoid executing that code from my app.
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: TextPipe engine is always writing to an (unwanted) log f
Hi Ron,
It's left-over debug code, and it will be gone for the next release. Let me know (via email) if you need it sooner.
It's left-over debug code, and it will be gone for the next release. Let me know (via email) if you need it sooner.
Re: TextPipe engine is always writing to an (unwanted) log f
I kludged around it for now by putting a TerminateProcess() at the end of my app so that textpipeengine.dll wouldn't have a chance to run its exit code. I'm unsure that it wont cause a problem if there's any code that textpipeengine.dll *should* be running when it exits, but it does work around the immediate problem.
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: TextPipe engine is always writing to an (unwanted) log f
No, I think you'll be fine using that approach.