/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable no-console */
abstract class Logger {
  private static readonly defaultTag = 'AugnitoAmbientSDK';
  static log(message: string | any | any[], tag?: string) {
    const logTag = tag != null ? tag : this.defaultTag;
    console.log(`${logTag}:`, message);
  }

  static error(message: string | any | any[], tag?: string) {
    const logTag = tag != null ? tag : this.defaultTag;
    console.error(`${logTag}:`, message);
  }
}
export { Logger };