UNPKG

augnitoambientsdk

Version:

Use this typescript SDK to integrate Augnito’s Ambient Tech within your EMR. To get access credentials or know more about how Augnito Ambient can benefit you, please visit our website and connect with our sales team: https://augnito.ai/

18 lines (17 loc) 559 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Logger = void 0; /* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable no-console */ class Logger { static log(message, tag) { const logTag = tag != null ? tag : this.defaultTag; console.log(`${logTag}:`, message); } static error(message, tag) { const logTag = tag != null ? tag : this.defaultTag; console.error(`${logTag}:`, message); } } exports.Logger = Logger; Logger.defaultTag = 'AugnitoAmbientSDK';