Skip to content

Commit

Permalink
chore: add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ishowvel committed Oct 30, 2024
1 parent d003f9e commit a4caea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/task-update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export async function updateTaskReminder(context: ContextPlugin, repo: ListForOr
lastReminderComment: lastReminderComment ? DateTime.fromISO(lastReminderComment.created_at).toLocaleString(DateTime.DATETIME_MED) : "none",
mostRecentActivityDate: mostRecentActivityDate.toLocaleString(DateTime.DATETIME_MED),
});
logger.info(`Priority ${priorityLevel}`);
logger.info(`Priority Speed ${prioritySpeed}`);
logger.debug(`Priority ${priorityLevel}`);
logger.debug(`Priority Speed ${prioritySpeed}`);
const disqualificationTimeDifference = disqualification - warning;
logger.info(
`Normal disqualification time ${disqualificationTimeDifference}, Speedy disqualification time (if enabled) ${prioritySpeed ? disqualificationTimeDifference / priorityLevel : disqualificationTimeDifference}`
Expand Down

0 comments on commit a4caea3

Please sign in to comment.