logs: Add log build function to logger

Signed-off-by: Cameron Diver <cameron@resin.io>
This commit is contained in:
Cameron Diver 2018-10-15 12:32:27 +01:00 committed by Tim Perry
parent bf062124f7
commit 6bcfb2dd51

View File

@ -61,6 +61,10 @@ class Logger {
logError(msg: string) {
return this.streams.error.write(msg + eol);
}
logBuild(msg: string) {
return this.streams.build.write(msg + eol);
}
}
export = Logger;