vcloudsystems-automations-logger
v1.0.2
Published
Logger for automations
Readme
vCloudSystems Automations Logger
Internal logging utility
Installation
npm install vcloudsystems-automations-loggerUsage
import { Logger, loggerConfig } from "vcloudsystems-automations-logger";
// init configuration
loggerConfig({
api_url: "",
api_key: "",
log_target: "",
});
// single log
const result = await Logger.log(
{ some: "thing" },
);
// multiple logs
const result = await Logger.log([
{ some: "thing" },
{ other: "thing" },
]);