Debug.Log Extensions
Documentation (1.1.9)

◆ LogWarningFormat() [3/5]

static void Debug.LogWarningFormat ( int  channel,
Object  context,
string  format,
params object[]  args 
)
static

Logs a warning message to the Console formed by inserting the values of args zero or more objects into a format text string.

public IEnumerator PlaySound(float delay, AudioId audioId) { if(delay < 0f) { Debug.LogWarningFormat(Channel.Audio, this, "PlaySound({0}) called with an invalid delay: {1}.", audioId, delay); delay = 0f; }

yield return new WaitForSeconds(delay);

audioController.Play(audioId); }

Parameters
channelThe channel to which the message belongs.
contextObject to which the message applies.

If you pass a context argument that Object will be momentarily highlighted in the Hierarchy window when you click the log message in the Console.

Parameters
formatA composite format string based on which the message is generated.

Each format item inside the string is replaced by the value of the argument at the same index.

A format item consists of braces ("{" and "}") containing the index of the argument whose value should be inserted into the format string at that location.

Parameters
argsZero or more objects to be converted to string and inserted into the format composite format string.