Skip to content

Commit

Permalink
Fix logging typo
Browse files Browse the repository at this point in the history
When launching AB3 from terminal using java -jar, the start of logging
says 'Starting AddressBook' while the end says 'Stopping Address Book'.

Let's fix this inconsistency by changing it to 'Stopping AddressBook' in
MainApp.java
  • Loading branch information
baskargopinath committed Jul 22, 2024
1 parent a736a75 commit d0520ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void start(Stage primaryStage) {

@Override
public void stop() {
logger.info("============================ [ Stopping Address Book ] =============================");
logger.info("============================ [ Stopping AddressBook ] =============================");
try {
storage.saveUserPrefs(model.getUserPrefs());
} catch (IOException e) {
Expand Down

0 comments on commit d0520ce

Please sign in to comment.