public static void error(Tag tag, object s) { if (DevTag.getInstance().isAllowed(tag)) { Debug.LogError(tag + " : " + s); } }
public static DevTag getInstance() { if (instance == null) { instance = new DevTag(); } return(instance); }