API / Js / Console

Console

Provide console (logging) utilities.

log

RES
let log: 'a => unit
RES
let log2: ('a, 'b) => unit
RES
let log3: ('a, 'b, 'c) => unit
RES
let log4: ('a, 'b, 'c, 'd) => unit
RES
let logMany: array<'a> => unit

info

RES
let info: 'a => unit
RES
let info2: ('a, 'b) => unit
RES
let info3: ('a, 'b, 'c) => unit
RES
let info4: ('a, 'b, 'c, 'd) => unit
RES
let infoMany: array<'a> => unit

warn

RES
let warn: 'a => unit
RES
let warn2: ('a, 'b) => unit
RES
let warn3: ('a, 'b, 'c) => unit
RES
let warn4: ('a, 'b, 'c, 'd) => unit
RES
let warnMany: array<'a> => unit

error

RES
let error: 'a => unit
RES
let error2: ('a, 'b) => unit
RES
let error3: ('a, 'b, 'c) => unit
RES
let error4: ('a, 'b, 'c, 'd) => unit
RES
let errorMany: array<'a> => unit

trace

RES
let trace: unit => unit

timeStart

RES
let timeStart: string => unit

timeEnd

RES
let timeEnd: string => unit