Gamebase SDK for Unity 2.69.0
Toast Gamebase Platform
Loading...
Searching...
No Matches

◆ Info()

static void Info ( string message,
Dictionary< string, string > userFields = null )
static

Send a log to Log & Crash Server for analyzing the string message with info level.

Since
Added 2.6.0.
Parameters
messageMessage to send to the log
userFieldsAdditional information to send to the log

Example Usage :

public void InfoSample()
{
Dictionary<string, string> userFields = new Dictionary<string, string>()
{
{ "KEY_1", "VALUE_1" },
{ "KEY_2", "VALUE_2" },
};
Gamebase.Logger.Info("MESSAGE", userFields);
}