How to use the @dagonmetric/ng-log.LogLevel.None function in @dagonmetric/ng-log

To help you get started, we’ve selected a few @dagonmetric/ng-log examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github myanmartools / zawgyi-unicode-converter-pwa / src / modules / ng-log-firebase-analytics / firebase-analytics-logger.ts View on Github external
log(logLevel: LogLevel, message: string | Error, logInfo?: LogInfo): void {
        if (!this._analytics || logLevel === LogLevel.None) {
            return;
        }

        // tslint:disable-next-line: no-any
        const properties: { [key: string]: any } = logInfo && logInfo.properties ? { ...logInfo.properties } : {};

        if (this._userInfo.userId) {
            properties.user_id = this._userInfo.userId;
        }

        if (this._userInfo.accountId) {
            properties.account_id = this._userInfo.accountId;
        }

        if (logLevel === LogLevel.Error || logLevel === LogLevel.Critical) {
            properties.description = typeof message === 'string' ? message : `${message}`;
github myanmartools / zawgyi-unicode-converter-pwa / src / app / shared / ng-log-firebase-analytics / firebase-analytics-logger.ts View on Github external
log(logLevel: LogLevel, message: string | Error, logInfo?: LogInfo): void {
        if (!this._analytics$ || logLevel === LogLevel.None) {
            return;
        }

        // tslint:disable-next-line: no-any
        const properties: { [key: string]: any } = logInfo && logInfo.properties ? { ...logInfo.properties } : {};

        if (logLevel === LogLevel.Error || logLevel === LogLevel.Critical) {
            properties.description = typeof message === 'string' ? message : `${message}`;
            properties.fatal = logLevel === LogLevel.Critical;

            this._analytics$.pipe(
                tap((analyticsService) => {
                    analyticsService.logEvent('exception', properties);
                }),
                runOutsideAngular(this._zone)
            ).subscribe();

@dagonmetric/ng-log

Vendor-agnostic logging, analytics and telemetry service abstractions and some implementations for Angular applications.

MIT
Latest version published 4 years ago

Package Health Score

49 / 100
Full package analysis