API / Js / Console

You are currently looking at the v6.0 - v8.2 docs (Reason v3.6 syntax edition). You can find the latest API docs here.

(These docs cover all versions between v3 to v8 and are equivalent to the old BuckleScript docs before the rebrand)

Console

Provide console (logging) utilities.

log

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

info

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

warn

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

error

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

trace

RE
let trace: unit => unit;

timeStart

RE
let timeStart: string => unit;

timeEnd

RE
let timeEnd: string => unit;