Skip to content

Commit

Permalink
Adding logger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jan 8, 2025
1 parent 4c8f1e0 commit 2749b80
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ public String PerformFunction(String input, Context context) throws Exception {
String filename = (String) file.get("fileName");
String key = (String) file.get("key");

if (filename.endsWith(".dmrpp")) {
AdapterLogger.LogDebug(this.className + " found a DMRPP file...\n" +
"BUCKET: " + file.get("bucket") + "\n" +
"KEY: " + file.get("key") + "\n" +
"FILE: " + filename);
}

//String filename = file.getName();
if (filename.endsWith(".mp")) {
mpFileBucket = (String) file.get("bucket");
Expand Down

0 comments on commit 2749b80

Please sign in to comment.