Skip to content

Commit

Permalink
Fix typos in logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
logresearch authored Jul 24, 2024
1 parent d04e2b3 commit 56e1e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/kodedu/boot/AppStarter.java
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ private void registerStartupListener(CmdlineConfig config) {
config.files.stream().forEach(f -> {
File file = new File(f).getAbsoluteFile();
if (file.exists()) {
logger.info("Opening file as requsted from cmdline: {}", file);
logger.info("Opening file as requested from cmdline: {}", file);
if (workingDirectory == null) {
directoryService.changeWorkigDir(file.toPath().getParent());
}
Expand Down

0 comments on commit 56e1e80

Please sign in to comment.