Skip to content

Commit

Permalink
plugins/soi: Less output to the console.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulosousadias committed Nov 15, 2023
1 parent 9de92cf commit b5ebf56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static AssetState parse(String json) {
Date d = null;
if (obj.get("timestamp") != null)
d = new Date((long)(obj.getDouble("timestamp", 0) * 1000));
System.out.println("date for asset state is "+d);
//System.out.println("date for asset state is "+d);
ArrayList<String> errors = new ArrayList<>();

if (obj.get("errors") != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public List<Asset> call() throws Exception {
in.close();
conn.disconnect();
if (content.length() > 2)
System.out.println("SoiState JSON :> " + content);
System.out.println("SoiState JSON :> " + content.substring(0, 20) + " ...");
return AssetState.parseStates(content.toString());
}
});
Expand Down

0 comments on commit b5ebf56

Please sign in to comment.