Skip to content

Commit

Permalink
Merge pull request #165 from m1oojv/megan/change-app-version
Browse files Browse the repository at this point in the history
docs: Update app version in logs
  • Loading branch information
HugeNoob authored Nov 10, 2023
2 parents 7a87678 + 7199a8e commit 59c0c4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(1, 3, 0, false);
public static final Version VERSION = new Version(1, 4, 0, false);

private static final Logger logger = LogsCenter.getLogger(MainApp.class);

Expand All @@ -48,7 +48,7 @@ public class MainApp extends Application {

@Override
public void init() throws Exception {
logger.info("=============================[ Initializing AddressBook ]===========================");
logger.info("=============================[ Initializing CoordiMate ]===========================");
super.init();

AppParameters appParameters = AppParameters.parse(getParameters());
Expand Down Expand Up @@ -170,13 +170,13 @@ protected UserPrefs initPrefs(UserPrefsStorage storage) {

@Override
public void start(Stage primaryStage) {
logger.info("Starting AddressBook " + MainApp.VERSION);
logger.info("Starting CoordiMate " + MainApp.VERSION);
ui.start(primaryStage);
}

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

0 comments on commit 59c0c4f

Please sign in to comment.