Solved

FME cmd.exe display transaction log


Badge

I frequently use batch scripts to run series of workbenches in cmd.exe. I would really like to see the contents of the 'transaction window' or log file displayed in the cmd.exe window. I know I can look at the logs, but that is an extra step and not as useful.

Normally what displays is something like this, which doesn't explain what is happening in the transactions window or log file.

 

I really want to display this stuff in real time (not after the transaction complete):

 

Have I missed something, or is it not possible. Thanks in advance for your help

icon

Best answer by timothyedoran 31 July 2017, 17:30

View original

2 replies

Userlevel 3
Badge +13

Hi @timothyedoran 

Yes! This is possible. simply append "LOG_STANDARDOUT Yes" to the FME.EXE command line, e.g:

fme "C:\TEMP\standout.fmw" LOG_STANDARDOUT Yes

Give it a go

EDIT: Changed LOGSTANDOUT to LOG_STANDARDOUT

Badge

Thanks for the help. This command works exactly as I needed it to.

fme "C:\TEMP\standout.fmw" LOG_STANDARDOUT Yes

Reply