Skip to main content

Hi,

 

I am running FME from the command line. I was wondering, because I've never been able to work it out, is there a way to make it so that FME does not report anything to the console window so there isn't as much text? Or at least less text?

 

For example I don't want to report all this progress text

2023-11-01 

 

The way I am calling FME is like this:

fme WORKSPACE.fmw ^

--PARAM_1 ABC ^

--PARAM_2 123

 

Any help would be appreciated thanks

Hi @james_c_452​ Is that your exact syntax?  From the screenshot it looks like you're running it with 

LOG_STANDARDOUT YES

at the end.  Which build of FME are  you using? Also, it looks like you're running a mapping file - you can run a workspace (*.fmw) from the command line too.


Hi @james_c_452​ Is that your exact syntax?  From the screenshot it looks like you're running it with 

LOG_STANDARDOUT YES

at the end.  Which build of FME are  you using? Also, it looks like you're running a mapping file - you can run a workspace (*.fmw) from the command line too.

Hi @danatsafe​ ,

 

Yes that's it (except it was a typo. I am calling an fmw file. I have changed that in the original post).

 

I have tried this also but it is still the same

fme WORKSPACE.fmw ^

--PARAM_1 ABC ^

--PARAM_2 123 ^

LOG_STANDARDOUT NO


I just tested the following technique, and it only outputs the single line "Translation was SUCCESSFUL" in the console when using FME 2023.1:

fme.exe myworkspace.fmw > nul

 


I just tested the following technique, and it only outputs the single line "Translation was SUCCESSFUL" in the console when using FME 2023.1:

fme.exe myworkspace.fmw > nul

 

That works a treat. Adding > nul works

Thanks @david_r​ !


Reply