如何防止Delphi应用程序在启动时创建GLScene日志文件?

时间:2012-05-13 12:32:56

标签: delphi delphi-xe2 glscene

我的delphi应用程序在启动时创建以下.log文件:

0    (I)    Thread ID 6168  Log subsystem started in elapsed time mode.
0    (I)    Thread ID 4620  Service thread started
312  (i)    Thread ID 4620  Temporary rendering context created
312  (I)    Thread ID 4620  Getting OpenGL entry points and extension
...

它在哪里受到控制?

2 个答案:

答案 0 :(得分:13)

检查GLScene.inc

// Activate Logging
{$DEFINE GLS_LOGGING}

要关闭注销,您必须注释掉定义

// Activate Logging
{.$DEFINE GLS_LOGGING}

答案 1 :(得分:2)

是的,这是GLScene正在进行日志记录。您可以通过确保GLS_LOGGING文件中未定义GLScene.inc条件来禁用它。