public void LogError(string text, EntryOptions options) { LogError(new EntryData() { text = text, options = options }); }
public void LogWarning(string text, EntryOptions options) { LogWarning(new EntryData() { text = text, options = options }); }
public EntryData(string text, Texture2D icon, string stackTrace, EntryOptions options, params string[] tags) { this.text = text; this.icon = icon; this.stackTrace = stackTrace; this.options = options; this.tags = new List <string>(tags); SanitizeTags(); }
public EntryData(string text, Texture2D icon, EntryOptions options, params string[] tags) : this(text, icon, null, options, tags) { }
public EntryData(string text, EntryOptions options, params string[] tags) : this(text, null, null, options, tags) { }