Interfacetypesv0.8.2ILoggerOne method per severity. msg is the printf-style template, args fill its specifiers and trail as extra fields. interface ILoggerExamplesCopylogger.error('Failed to load %s', url, { code: 404 }); logger.info('User %s has %d points and %f rating', username, points, rating, { extra: 'data' });Member overviewMethodsdebug()error()info()trace()warn()Methodsdebug()debug( msg: string, args: unknown[] ): voiderror()error( msg: string, args: unknown[] ): voidinfo()info( msg: string, args: unknown[] ): voidtrace()trace( msg: string, args: unknown[] ): voidwarn()warn( msg: string, args: unknown[] ): void