Provides log functionality.

Basic Usage

app.component.ts

import { LogService } from '@alfresco/adf-core';

@Component({...})
class AppComponent {

    constructor(logService: LogService) {
    }
    
    myMethod(){
      this.logService.error('My error');
      this.logService.trace('My trace')
      this.logService.debug('My debug')
      this.logService.info('My info')
      this.logService.warn('My warn')
    }
    
}
import { LogService } from '@alfresco/adf-core';

@Component({...})
class AppComponent {

    constructor(logService: LogService, myIntegrationService: MyIntegrationService)) {
        logService.onMessage.subscribe((message) => {
               myIntegrationService.send(message.text,message.type);
         });
    }
}

Class members

Methods

  • assert(test?: boolean, message?: string, optionalParams: any[])
    Logs a message if a boolean test fails.
    • test: boolean - (Optional) Test value (typically a boolean expression)
    • message: string - (Optional) Message to show if test is false
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • debug(message?: any, optionalParams: any[])
    Logs a message at the "DEBUG" level.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • error(message?: any, optionalParams: any[])
    Logs a message at the "ERROR" level.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • getLogLevel(level: string): LogLevelsEnum
    Converts a log level name string into its numeric equivalent.
    • level: string - Level name
    • Returns LogLevelsEnum - Numeric log level
  • group(groupTitle?: string, optionalParams: any[])
    Starts an indented group of log messages.
    • groupTitle: string - (Optional) Title shown at the start of the group
    • optionalParams: any[] - Interpolation values for the title in "printf" format
  • groupEnd()
    Ends a indented group of log messages.
  • info(message?: any, optionalParams: any[])
    Logs a message at the "INFO" level.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • log(message?: any, optionalParams: any[])
    Logs a message at any level from "TRACE" upwards.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • messageBus(text: string, logLevel: string)
    Triggers notification callback for log messages.
    • text: string - Message text
    • logLevel: string - Log level for the message
  • trace(message?: any, optionalParams: any[])
    Logs a message at the "TRACE" level.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format
  • warn(message?: any, optionalParams: any[])
    Logs a message at the "WARN" level.
    • message: any - (Optional) Message to log
    • optionalParams: any[] - Interpolation values for the message in "printf" format

Details

Log levels

There are 6 levels of logs that you can use:

NameLevel
TRACE5
DEBUG4
INFO3
WARN2
ERROR1
SILENT0

You can set the default log level using the logLevel property in app.config.json. The factory setting for this property is TRACE.

For example, you can set the default log level to WARNING as follows:

app.config.json

{
    "logLevel": "WARN" 
}

Log message bus

The log service also provides an Observable called _onMessage_ that you can subscribe to if you want to receive all the log messages. The message object passed as a parameter to the onMessage handler has the following format:

{
    text: "Message log text"
    type: "ERROR|DEBUG|INFO|LOG|TRACE|WARN|ASSERT"
}

Using the log to feed analytics

You can pass the log output to an analytics system to collect error and assertion data from apps as they run. This can help you spot which problems users are running into most often and the situations in which they occur. See the tutorial about integrating the log service with analytics on the Alfresco Community site for further information.

© 2023 Alfresco Software, Inc. All Rights Reserved.