Skip to content

Commit

Permalink
DEV improve task log by adding task type
Browse files Browse the repository at this point in the history
  • Loading branch information
juliecoust committed Nov 27, 2024
1 parent cb754e2 commit 69aa0ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/repositories/task-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class TaskRepositoryImpl implements TaskRepository {

// create log file
try {
await this.logMessage(log_file_path, "Task created")
await this.logMessage(log_file_path, "Task created for " + task.task_type)
await this.logMessage(log_file_path, "Task params: " + JSON.stringify(task.task_params))
} catch (err) {
console.log(err);
Expand Down

0 comments on commit 69aa0ca

Please sign in to comment.