Debug.Log Extensions
Documentation (1.1.9)

◆ PersonalChannelName

string Sisus.Debugging.Dev.PersonalChannelName
staticget

Gets the name of your personal channel which is unique to this particular computer.

This channel will automatically be whitelisted only on this computer.

Once you know the name of your personal channel you can prefix logged messages with it wrapped in brackets to have the messages only show up on your computer and not clutter up the Console for anyone else.

[MenuItem("Help/Print My Personal Channel Name")]
public static void PrintMyPersonalChannel()
{
// This printed "JohnDoe" on my computer.
Dev.Log(Dev.PersonalChannelName);
}
public static void LogIfJohnDoe(string message)
{
// Log the message using JohnDoe's personal channel.
Dev.Log(Channel.JohnDoe, message);
}
Defines a channel for a message logged to the Console.
Definition: Channel.cs:12