コード例 #1
0
    // TODO: strip this code in the end!
    public static void Info(TraceCategory category, string message)
    {
        if (!EnabledMask.HasFlag(category))
        {
            return;
        }

        Debug.Log("[" + category.ToString() + "]" + message);
    }