Skip to content

Commit b778075

Browse files
committed
Tickets: Drop email send debug level to 5
1 parent 873f918 commit b778075

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/ticket.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ class TicketSystem {
335335
display: this.getTicketDisplayArgs(args)
336336
};
337337

338-
this.logTicket(9, "Sending ticket email notification: #" + ticket.num + ": " + email_args.email_to);
338+
this.logTicket(5, "Sending ticket email notification: #" + ticket.num + ": " + email_args.email_to);
339339

340340
if (!is_new_ticket) {
341341
// compose changes
@@ -358,7 +358,7 @@ class TicketSystem {
358358

359359
this.sendFancyMail( is_new_ticket ? 'ticket_new' : 'ticket_updated', email_args, function(err, body, log) {
360360
if (err) self.logError('mail', "Failed to send email: " + email_args.email_to + ": " + err, { log } );
361-
else self.logTicket(7, "Email sent successfully to: " + email_args.email_to );
361+
else self.logTicket(5, "Email sent successfully to: " + email_args.email_to );
362362
} );
363363
}
364364

0 commit comments

Comments
 (0)