Tags: superstringsoftware/observatory
Tags
NOTE!!! New, potentially breaking, API in logging methods!!! pls read ** Improved profiling, now collections and subscriptions respect thresholds ** Revised Galileo architecture, now for all logging methods (info, warn etc) instead of using old signature: tb.info(message, obj, module, type, buffer = false) need to use new one: tb.info(message, options) or just tb.info (options) options object can contain the same all params but as named properties: `message` - String, text message to include into the full log message to be passed to loggers # * `module` - String, optional module name. If the emitter is named, its' name will be used if no name is provided. # * `type` - String, type of the message, used internally for distinguishing between different message types for further processing - DON’T use it unless you are overriding the emitter # * `obj` - Object, optional arbitrary json-able object to be included into full log message, e.g. error object in the call to `error` # * `useBuffer` - Bool, whether to tell loggers to use the buffer
PreviousNext