Interface ISocialLogger

Namespace: EPiServer.Social.Common
Assembly: EPiServer.Social.Common.dll
Version: 1.5.4
Syntax
public interface ISocialLogger

Methods

Critical(String, Object[])

Logs a critical message to the underlying log.

Declaration
void Critical(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

Debug(String, Object[])

Logs a debug message to the underlying log.

Declaration
void Debug(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

Error(String, Object[])

Logs a error message to the underlying log.

Declaration
void Error(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

Information(String, Object[])

Logs a informational message to the underlying log.

Declaration
void Information(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

Trace(String, Object[])

Logs a trace message to the underlying log.

Declaration
void Trace(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

Warning(String, Object[])

Logs a warning message to the underlying log.

Declaration
void Warning(string messageFormat, params object[] args)
Parameters
Type Name Description
System.String messageFormat

Log message with optional placeholder

System.Object[] args

Optional placeholder parameters

arrow_upward