Using PmLogLib in JavaScript

To log information of web apps written in JavaScript, you can use the built-in API webOSSystem.PmLogString().

Method

MethodDescription and Syntax

webOSSystem.PmLogString

Provides the logging mechanism for various levels.

Syntax:

webOSSystem.PmLogString(level, msgid, kv_pairs, msg);

Parameters

The table below provides the description of the message elements.

ParameterTypeDescription

level

Number

The level should be one of the following values:

  • 3 (critical): Use this when you need to log critical errors.

  • 4 (error): Use this when you need to log errors.

  • 5 (warning): Use this when you need to log warnings.

  • 6 (info): Use this when you need to log usage metrics.

  • 7 (debug): Use this when you need to log debug messages. These messages will not get into system log by default. Developers must enable them.

msgid

String

The msgid is an arbitrary short string (in most cases between 5 and 16 characters long) that uniquely identifies a log message within a component. The msgid cannot be a NULL or an empty string. It cannot contain a blank space (" ") or curly brackets ("{}") in it.

Every log statement, except for the debug and trace log statement, is expected to have a unique msgid to clearly differentiate the messages by function and use them for metrics analysis. For example, the number of app launches per session, can be determined by counting the messages with msgid. The selection of the message IDs is left up to the developer. Typically it would be a short string in all capitals, for example, APPSTRT. It is not necessary that the meaning of the message is apparent from the msgid alone, but it is best to standardize on the names.

It may be an additional burden on the developers to add message IDs to log statements. However, considering that our logs at or above INFO should only include significant information, we expect that programs will not need a large number of message IDs and the effort required will be kept minimal.

Note
The msgid is not required if the level parameter is set to debug. Since debug level logs are used by developers for code debugging and not used for metrics analysis, it is kept simpler for developers to log as a free-text at the debug level.

kv_pairs

Object

This is an optional parameter which consists of a set of key-value pairs followed by a free text to provide additional information in the logs which can be used for analytics purpose.

Note
This parameter is optional, as long as the message ID itself is descriptive. For example, a message with an ID of NETWORK_DOWN or READ_CONF_FAIL is self-descriptive and does not need additional information passed as a parameter.
  • Info and the higher level of messages should use key-value pairs to provide useful information about the log.

  • Keys should NOT contain a colon (":") in it.

msg

String

The text to be logged.

Example

The following is the sample code for how services written in JavaScript can log information.

webOSSystem.PmLogString(6, "MSG_ID", '{"key":"value"}', "test msg");

Contents