Skip to content

Commit

Permalink
more debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazingTwist committed Mar 28, 2021
1 parent 729ebbe commit ced82df
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import java.io.OutputStreamWriter;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.util.Arrays;
Expand Down Expand Up @@ -209,6 +210,9 @@ public void load() {

System.err.println("read: " + readLines + " lines at configPath: " + configPathGNS.get());
System.err.println("Collected lines to String: " + json);
Path path = Paths.get(configPathGNS.get());
long size = Files.size(path);
System.err.println("Filesize is: " + size + " | at Path: " + path.toString());

ObjectMapper mapper = getObjectMapper();
//this.tracerConfig = mapper.readValue(json, TracerConfig.class);
Expand Down

0 comments on commit ced82df

Please sign in to comment.