Skip to content

Commit 023d946

Browse files
committed
Add missing semicolon
1 parent 57f47b9 commit 023d946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/log.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function Logger (log) {
44

55
Logger.prototype.log = function (message) {
66
if (this.writeLog) {
7-
console.log(message)
7+
console.log(message);
88
}
99
};
1010

0 commit comments

Comments
 (0)