Logger Library
Chainrisk has implemented its logger system to ensure consistent and well-structured logs. The logs will majorly be used for debugging purposes.
{
simResultID: String,
log: String,
obj: {},
type: String,
}log.info(
"Simulation Started",
{
name: name,
startedAt: startedAt,
},
simID
);Last updated