Page 1 of 1
Sql.log
Posted: Tue Jun 01, 2010 3:21 pm
by Radiatorman
Is there a way to limit or stop (turn on/off) the creation/addition of the sql.log file? It is growing quite rapidly and I have a feeling it's going to fill my disk space.
Re: Sql.log
Posted: Wed Jun 02, 2010 7:04 am
by batmike
If you have the source code (which is why this happened to me), make sure that the properties of the Visual Studio are set to build in release mode and not debug mode. If the project is built in debug mode, there is a condition in the code to generate the sql.log file to track problems. Once it's in release mode, that file is no longer generated.
Hope that helps, I know that file got huge on my system and I couldn't figure out why that was happening.
Mike
Re: Sql.log
Posted: Wed Jun 02, 2010 5:57 pm
by Radiatorman
Sweet... it worked. Thank you so much.