Skip to content

Commit

Permalink
Config error logs update.
Browse files Browse the repository at this point in the history
  • Loading branch information
dashrath-chauhan committed Nov 15, 2024
1 parent 402d4ea commit 2de7573
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ configurations.all {
}

group 'org.ga4gh'
version '0.5.7-mysql-test'
version '0.5.8'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public static <T> T load(Class<T> loadedClass, ApplicationArguments args, Option
}
}
} catch (ParseException e) {
System.out.println("ERROR: problem encountered setting config, config not set");
System.out.println("ERROR: problem encountered setting config, config not set"+ e.getMessage());
} catch (FileNotFoundException e) {
System.out.println("ERROR: problem encountered setting config, config file not found");
System.out.println("ERROR: problem encountered setting config, config file not found"+ e.getMessage());
} catch (IOException e) {
System.out.println("ERROR: problem encountered setting config, config YAML could not be parsed");
System.out.println("ERROR: problem encountered setting config, config YAML could not be parsed"+ e.getMessage());
}

return loadedObject;
Expand Down

0 comments on commit 2de7573

Please sign in to comment.