Skip to content

Commit

Permalink
back to 7 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
suculent committed Nov 15, 2023
1 parent bf7c7bd commit 5565f99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/thinx/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,12 @@ module.exports = class Transfer {

const dtid = "dt:" + transfer_id;
let encoded_json_keys = await this.redis.get(dtid);

console.log(`🔨 [debug] [transfer] Fetched DTID: ${dtid} encoded_json_keys ${encoded_json_keys}`);

let keys = JSON.stringify(encoded_json_keys);

console.log(`🔨 [debug] [transfer] Fetched DTID: ${dtid} with keys ${{ keys }}`);
console.log(`🔨 [debug] [transfer] Fetched DTID: ${dtid} with keys ${keys}`);

if (keys.length == 0) {
console.log("⚠️ [warning] [transfer] transfer_id not found (empty response array)");
Expand Down

0 comments on commit 5565f99

Please sign in to comment.