11 lines
196 B
CoffeeScript
11 lines
196 B
CoffeeScript
FFTCGLOG = (unit) ->
|
|
@unit = unit
|
|
return
|
|
|
|
FFTCGLOG::log = (msg) ->
|
|
console.log "[#{@unit}] #{msg}"
|
|
|
|
FFTCGLOG::error = (msg) ->
|
|
console.error "[#{@unit}] #{msg}"
|
|
|
|
module.exports = FFTCGLOG
|