commented console.log

This commit is contained in:
Francesco Mangiacrapa 2023-01-25 11:41:20 +01:00
parent 1844c32a4b
commit 3e01fba65a
3 changed files with 22 additions and 12 deletions

View File

@ -56,6 +56,7 @@
@ -135,6 +136,7 @@
@ -214,6 +216,7 @@
@ -293,6 +296,7 @@
@ -335,6 +339,7 @@
@ -403,6 +408,7 @@
@ -482,6 +488,7 @@
@ -561,6 +568,7 @@
@ -640,6 +648,7 @@

View File

@ -35,7 +35,7 @@ public class JSONEditorWrapper extends JavaScriptObject {
console.log("JSONEditorWrapper error: " + error)
}
};
console.log("container is: " + container);
//console.log("container is: " + container);
return new $wnd.JSONEditor(container, options);
}-*/;
@ -47,7 +47,7 @@ public class JSONEditorWrapper extends JavaScriptObject {
public final native void set(String json) /*-{
var toJSONObject = JSON.parse(json);
// set json
console.log("displayng JSON: " + toJSONObject);
//console.log("displayng JSON: " + toJSONObject);
this.set(toJSONObject);
this.refresh();
}-*/;
@ -58,7 +58,7 @@ public class JSONEditorWrapper extends JavaScriptObject {
* @return the text
*/
public final native String getText() /*-{
console.log("this.get(): " +this.getText());
//console.log("this.get(): " +this.getText());
return this.getText();
}-*/;

View File

@ -71,6 +71,7 @@ public class MongoServiceUtil {
// Prepare request
RegisterFileSetRequest fsRequest = FileSets.prepareRequest(new StorageUtils(), parentPath, fieldName,
fieldDefinition, files);
project = client.registerFileSet(project.getId(), fsRequest);
LOG.trace("Resulting Project : " + project);
LOG.debug("Resulting Project as JSON: " + Serialization.write(project));