Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

sp core library.log.info

John Nguyen edited this page Apr 22, 2021 · 2 revisions

Home > @microsoft/sp-core-library > Log > info

Log.info() method

Logs a general informational message.

Signature:

static info(source: string, message: string, scope?: ServiceScope): void;

Parameters

Parameter Type Description
source string the source from where the message is logged, e.g., the class name. The source provides context information for the logged message. If the source's length is more than 20, only the first 20 characters are kept.
message string the message to be logged If the message's length is more than 100, only the first 100 characters are kept.
scope ServiceScope the service scope that the source uses. A service scope can provide more context information (e.g., web part information) to the logged message.

Returns:

void

Clone this wiki locally