Skip to content

Commit

Permalink
install log level set to info
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Mar 15, 2024
1 parent 55d5fab commit 7ebdc7f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/org/myrobotlab/service/Runtime.java
Original file line number Diff line number Diff line change
Expand Up @@ -4576,6 +4576,13 @@ public static void main(String[] args) {
Runtime.getInstance();

if (options.install != null) {
// resetting log level to info
// for an install otherwise ivy
// info will not be shown in the terminal
// during install of dependencies
// which makes users panic and hit ctrl+C
setLogLevel("info");

// we start the runtime so there is a status publisher which will
// display status updates from the repo install
log.info("requesting install");
Expand Down

0 comments on commit 7ebdc7f

Please sign in to comment.