REACT:Pausing For The Logfile

From Hydrogenaudio Knowledgebase
Revision as of 19:35, 29 July 2010 by Jan (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

On occasion it seems that the logfile is not created before it is required by command lines in the config file. This may result in an error if, for example, you are trying to embed the logfile in your lossless image, or move it to another directory.

One way to resolve this is to add the following code to your config file.


Add this code under the existing line "REM ---- Image ----". It will create a label called "CheckForLog", check that the logfile exists, and if not redirect to the label "Pause".

REM ---- Image ----

REM Ensure that the EAC log is available
:CheckForLog
IF NOT EXIST "@eaclog@" GOTO Pause


Add this code to the end of your config file. It will create a label called "Pause", pause for two seconds (2000 milliseconds) and then return to the label "CheckForLog".

GOTO :EOF

REM Pause for 2000 milliseconds and return to :CheckForLog
:Pause
@ECHO Waiting for EAC log file...
PING 1.1.1.1 -n 1 -w 2000 >NUL
GOTO CheckForLog


Using this method the two second pause will only occur in the unlikely event that the logfile does not currently exist, and will continue to pause until it does.