Skip to main content

StringExtensions.LogWarning

Declaration#

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

Parameters#

NameDescription
sourceMessage source
methodMethod source
messageMessage

Description#

Log a warning

Usage#

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

Declaration#

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

Parameters#

NameDescription
sourceMessage source
methodMethod source
messageMessage

Description#

Log a warning

Usage#

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