Polishing.
Refine ticket creation logging.
This commit is contained in:
@@ -82,7 +82,6 @@ public class TicketOperations {
|
||||
});
|
||||
} else {
|
||||
|
||||
logger.log(module, "Creating ticket for %s", summary);
|
||||
Ticket ticket = tracker.createTicket(module, summary, ticketType, true);
|
||||
results.add(ticket);
|
||||
}
|
||||
|
||||
@@ -265,7 +265,7 @@ public class GitHub extends GitHubSupport implements IssueTracker {
|
||||
public Ticket createTicket(ModuleIteration moduleIteration, String subject, String description, TicketType ticketType,
|
||||
boolean assignToCurrentUser) {
|
||||
|
||||
logger.log(moduleIteration, "Creating ticket…");
|
||||
logger.log(moduleIteration, "Creating ticket for %s", subject);
|
||||
|
||||
return doCreateTicket(moduleIteration, subject, description, ticketType, assignToCurrentUser);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user