File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments