Skip to content

Commit

Permalink
Fixing typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
tizzo committed Mar 14, 2016
1 parent 21ea06a commit d1f73cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class Server extends EventEmitter {
if (!self.validateMessage(data)) {
var message = `Enforcing limits for ${data.build.id}`;
if (data.build.project && data.build.project.organization) message += ` for organization ${data.build.project.organization.id}`;
self.log.info(self.getLogContext(data.build), `Enforcing limits for ${data.build.id} for organization ${data.build.project.organization.id}`);
self.log.info(self.getLogContext(data.build), message);
self.writeRecords(data, function(error) {
if (error) return self.log.error(error);
self.enforceLimits(data.build, done);
Expand Down

0 comments on commit d1f73cf

Please sign in to comment.