Skip to content

Commit

Permalink
* fix logging missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanr committed Oct 28, 2022
1 parent 3f4321e commit ae3af97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static void registerOnce( File fontFile ) {
final String fileKey = fontFile.getAbsolutePath();
if ( PROCESSED_FILES.contains( fileKey ) ) {
// do not re-register fonts, as fonts can not be deregistered in GraphicsEnvironment
LOG.info( "Skip file '{}' because it was already processed." );
LOG.info( "Skip file '{}' because it was already processed.", fontFile.getName() );
return;
}
PROCESSED_FILES.add( fileKey );
Expand Down

0 comments on commit ae3af97

Please sign in to comment.