summaryrefslogtreecommitdiff
path: root/external/aspnetwebstack/test/System.Json.Test.Integration/Common/Log.cs
blob: 76bfd591f862065790f19afaad9148f31c70f443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

namespace System.Json
{
    internal static class Log
    {
        public static void Info(string text, params object[] args)
        {
            Console.WriteLine(text, args);
        }
    }
}