Skip to content

Commit b962de5

Browse files
committed
log original object instead of normalized version
1 parent 44c0eb2 commit b962de5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ async function processWebhook(data: any) {
8787

8888
const hookResult = await lbClient.getResultById(resultId);
8989

90-
console.log(hookResult)
91-
9290
// Send to Discord
9391
await sendDiscordWebhook(dbUser, hookResult);
9492
console.log(`---- finished webhook processing at: ${Date.now()}`);

logbook/client.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ export function GetLogbookClient(baseUrl: string, token: string) {
9797
const formattedSplits: LogbookSplit[] = [];
9898
const formattedIntervals: LogbookInterval[] = [];
9999

100+
console.dir(data, {depth: null});
101+
100102
if (rawWorkout?.splits) {
101103
for (const w of rawWorkout.splits) {
102104
if (!w) continue;

0 commit comments

Comments
 (0)