summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Content.Pipeline/ContentLogger.cs
blob: 83848a192c37abd7853dfbbdd932173c333392aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Microsoft.Xna.Framework.Content.Pipeline;

namespace MonoGame.Extended.Content.Pipeline
{
    public class ContentLogger
    {
        public static ContentBuildLogger Logger { get; set; }

        public static void Log(string message)
        {
            Logger?.LogMessage(message);
        }
    }
}