Skip to main content

Is there a way to set the font of the text in the Logger transformer as it is displayed in “View Details”?

The Logger transformer has an option to set a font. I set my font to Consolas Regular 12

Then I ran the workbench on FME Server (FME Flow)

The I clicked on “View Details”

I could see the text that was created by the Logger, but it was not in the font that I had chosen

 

Under FME Options > Translation there is the option to set your font, is this what you’re looking for?

 

 


I do not think so. I think that just changes the font in the Translation Log on my FME Desktop.

What I want to achieve is setting the font in the Log when I am using my browser window to run a workbench on the FME Server


Ah, sorry, missed the part re Flow. You can probably go and manually update the css in the install location to use the font you want.

You could also use an extension like: https://mrinalcs.github.io/change-website-style-in-browser


Unfortunately I do not own or manage the Server. I was hoping for a setting that was specific to my published workspace.


This is the css file that drives the log table: FMEServer\Utilities\tomcat\webapps\fmeserver\app\jobs\_jobs.scss

Looking at it the font-family specified it does use Consolas, but only after exhausting a handful of other fonts:

.log-table {
table-layout: fixed;
width: 100%;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
font-size: 0.9em;


 


Do you mean that if the browser fails to find Monaco it then attempts to use Menlo and so on?


Do you mean that if the browser fails to find Monaco it then attempts to use Menlo and so on?

Correct :)


Reply