Skip to content

Commit

Permalink
Merge pull request #6 from klu2/fix-logging
Browse files Browse the repository at this point in the history
fix logging format
  • Loading branch information
cgrabmann authored Jul 22, 2024
2 parents 60f2ae2 + e8e0cf3 commit 416d036
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void exportWorkspace(@Nonnull Workspace workspace) {

private void storeDiagram(Diagram diagram) {
File file = new File(properties.export().c4PlantUml().outputDirectory(), diagram.getKey() + ".puml");
LOG.info("Writing diagram ${diagram.key} to ${it.absolutePath}");
LOG.info("Writing diagram {} to {}", diagram.getKey(), file.getAbsolutePath());
file.getParentFile().mkdirs();
try {
Files.writeString(file.toPath(), diagram.getDefinition());
Expand Down

0 comments on commit 416d036

Please sign in to comment.