Title | Added | Status | Last reviewed |
---|---|---|---|
Log Service |
v2.0.0 |
Active |
2018-06-08 |
Provides log functionality.
app.component.ts
import { LogService } from '@alfresco/adf-core';
@Component({...})
export 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({...})
export class AppComponent {
constructor(logService: LogService, myIntegrationService: MyIntegrationService)) {
logService.onMessage.subscribe((message) => {
myIntegrationService.send(message.text,message.type);
});
}
}
- 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
- test:
- 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
- message:
- 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
- message:
- getLogLevel(level:
string
):LogLevelsEnum
Converts a log level name string into its numeric equivalent.- level:
string
- Level name - Returns
LogLevelsEnum
- Numeric log level
- 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
- groupTitle:
- 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
- message:
- 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
- message:
- messageBus(text:
string
, logLevel:string
)
Triggers notification callback for log messages.- text:
string
- Message text - logLevel:
string
- Log level for the message
- text:
- 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
- message:
- 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
- message:
There are 6 levels of logs that you can use:
Name | Level |
---|---|
TRACE | 5 |
DEBUG | 4 |
INFO | 3 |
WARN | 2 |
ERROR | 1 |
SILENT | 0 |
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"
}
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"
}
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.