Improve logging.
This commit is contained in:
parent
6310c7fb82
commit
3e2a5af6fd
4 changed files with 3 additions and 3 deletions
|
|
@ -216,12 +216,12 @@ public class VmWatcher extends Component {
|
|||
handleVmDefinitionChange(crd, item);
|
||||
}
|
||||
} catch (IllegalStateException e) {
|
||||
logger.log(Level.FINE, e, () -> "Probem watching: "
|
||||
+ e.getMessage());
|
||||
logger.log(Level.FINE, e, () -> "Probem watching "
|
||||
+ "(retrying): " + e.getMessage());
|
||||
}
|
||||
}
|
||||
} catch (IOException | ApiException e) {
|
||||
logger.log(Level.FINE, e, () -> "Probem watching: "
|
||||
logger.log(Level.SEVERE, e, () -> "Probem watching: "
|
||||
+ e.getMessage());
|
||||
}
|
||||
fire(new Stop());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue