Skip to content

Commit b8d10c7

Browse files
committed
Small Fixes for the upcoming V 0.5 Release
1 parent d7571a4 commit b8d10c7

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/main/java/org/pwss/Start.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public static void main(String[] args) {
3939
Image icon = ImageIO.read(Objects.requireNonNull(Start.class.getResource("/app-icon.png")));
4040
frame.setIconImage(icon);
4141
} catch (IOException e) {
42+
log.debug("Failed to load application icon",e);
4243
log.error("Failed to load application icon: {}", e.getMessage());
4344
}
4445

@@ -58,7 +59,8 @@ public static void main(String[] args) {
5859
frame.setVisible(true);
5960
});
6061
} catch (Exception ex) {
61-
log.error("Failed to initialize LaF", ex);
62+
log.debug("Failed to initialize LaF", ex);
63+
log.error("Failed to initialize LaF", ex.getMessage());
6264
}
6365
}
6466
}

start.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ if ($null -eq $portInUse) {
66
Write-Host "Nothing is running on port 15400. Starting the process..."
77
java -jar "..\File-Integrity-Scanner\File-Integrity-Scanner\target\File-Integrity-Scanner-1.4.jar" &
88
Write-Host "File-Integrity-Scanner started."
9-
java -jar .\target\file_integrity_gui-0.4-jar-with-dependencies.jar
9+
java -jar .\target\file_integrity_gui-0.5-jar-with-dependencies.jar
1010
} else {
1111
Write-Host "File-Integrity-Scanner is already running on port 15400."
12-
java -jar .\target\file_integrity_gui-0.4-jar-with-dependencies.jar
12+
java -jar .\target\file_integrity_gui-0.5-jar-with-dependencies.jar
1313
}

0 commit comments

Comments
 (0)