|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Newtonsoft.Json.Linq;
namespace NuGet.Protocol.Plugins
{
internal sealed class StopwatchLogMessage : PluginLogMessage
{
private readonly long _frequency;
internal StopwatchLogMessage(DateTimeOffset now, long frequency)
: base(now)
{
_frequency = frequency;
}
public override string ToString()
{
var message = new JObject(new JProperty("frequency", _frequency));
return ToString("stopwatch", message);
}
}
}
|