Log level for console vs. log file
Hi Kinook,
I have searched around in the forums to look for more information about how logging works and haven't found much concrete info about it. In general, i read these 2 links below and still a little confused. http://www.kinook.com/VisBuildPro/Ma...ildlogging.htm http://www.kinook.com/VisBuildPro/Ma...putuseropt.htm Last week i started to mess around with logging by minimizing the amount of logs produced by the console with /loglevel and succeeded. However the side effects of it were loosing the ability to log to file. I log file by passing LOGFILE macro to child bld scripts. Is there anywhere that specifically says, which loglevel will / will not log to file? Thanks. |
|
Thanks. I used the link above for /loglevel. But how can i achieve /loglevel vbldLogLevelWarning + but still able to log with vbldLogLevelDetailed to LOGFILE?
|
Set Tools | Application Options | Logging (More) | Log level to Detailed and specify /loglevel 1 when calling visbuildcmd.
http://www.kinook.com/VisBuildPro/Ma...ingmoreopt.htm http://www.kinook.com/VisBuildPro/Manual/consoleapp.htm |
Thanks Kinook. This works but it requires me to parse /logfile _filename_.
Code:
visbuildcmd Test.bld /loglevel 1 /logfile Test.log Code:
visbuildcmd Test.bld /loglevel 1 LOGFILE=%PROJDIR%\BuildLogs\%PROJROOT%.log |
/logfile filename and LOGFILE=filename are equivalent. Both have the effect of defining a LOGFILE temporary macro which is available in the build.
http://www.kinook.com/VisBuildPro/Ma...ildlogging.htm http://www.kinook.com/VisBuildPro/Ma...stemmacros.htm |
1 Attachment(s)
According to my tests, these 2 command lines gives different results:
Does not produce log file: Code:
c:\Builds\Source\BuildScripts>visbuildcmd Test.bld /mta /loglevel 0 /config VisBuildPro.config LOGFILE=%PROJROOT%.log /nologo Code:
c:\Builds\Source\BuildScripts>visbuildcmd Test.bld /mta /loglevel 0 /config VisBuildPro.config /LOGFILE %PROJROOT%.log /nologo Code:
|
You found a bug. If the /loglevel parameter was specified and /logfile was not, the LOGFILE=value parameter was ignored and the LOGFILE macro set to an empty string instead. This is fixed in the latest download (VisBuildCmd.exe 8.7.0.3 in Help | About after installing). Sorry for not noticing the issue when you first posted. Thanks.
|
Thanks for the quickfix. I had it installed and it creates log files. Yay.
I have another question regarding the difference i see. The logfile is generated at the script directory, c:\Builds\Source\BuildScripts: Code:
c:\Builds\Source>visbuildcmd BuildScripts\Test.bld /mta /loglevel 0 /config BuildScripts\VisBuildPro.config LOGFILE=%PROJROOT%.log /nologo Code:
c:\Builds\Source>visbuildcmd BuildScripts\Test.bld /mta /loglevel 0 /config BuildScripts\VisBuildPro.config /LOGFILE %PROJROOT%.log /nologo |
True, they're not exactly equivalent. When LOGFILE=filename is used, the value provided is assigned to the macro value. When /logfile is used, it does convert relative paths (via the GetFullPathName API) as it also does for other file/path parameters (.bld filename, /configpath, etc.). It's probably best to specify an absolute path to remove any ambiguity (i.e., %PROJDIR% for the path of the .bld file, %~dp0 to use the calling command script's path, a hard-coded path, etc.).
|
Roger that. Thanks alot for the support!
|
All times are GMT -5. The time now is 07:19 PM. |
Copyright © 1999-2023 Kinook Software, Inc.