Add some debug/info logging

This commit is contained in:
Kris De Volder
2017-08-16 10:50:35 -07:00
parent a3541324f5
commit 9126f5973c
2 changed files with 2 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ public class BoshCliConfig {
}
public void handleConfigurationChange(Settings newConfig) {
Log.info("Settings received: "+newConfig);
this.settings = newConfig;
}
}

View File

@@ -103,6 +103,7 @@ public abstract class BoshCommandBasedModelProvider<T> implements DynamicModelPr
protected String executeCommand(ExternalCommand command) throws Exception {
if (command==null) {
Log.log("bosh cli based editor features are disabled");
throw new IOException("bosh cli based editor features are disabled");
}
try {