Skip to main content

StringExtensions.Log

Declaration#

public static void Log(string source, string method, string message)

Parameters#

NameDescription
sourceMessage source
methodMethod source
messageMessage

Description#

Log a message

Usage#

Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod()    {        StringExtensions.Log("Source", "Method", "Message");    }
}

Declaration#

public static void Log(Object source, string method, string message)

Parameters#

NameDescription
sourceMessage source
methodMethod source
messageMessage

Description#

Log a message

Usage#

Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod()    {        StringExtensions.Log(this, "Method", "Message");    }
}