|
// 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 CommunicationLogMessage : PluginLogMessage
{
private readonly MessageMethod _method;
private readonly string _requestId;
private readonly MessageState _state;
private readonly MessageType _type;
internal CommunicationLogMessage(DateTimeOffset now, string requestId, MessageMethod method, MessageType type, MessageState state)
: base(now)
{
_requestId = requestId;
_method = method;
_type = type;
_state = state;
}
public override string ToString()
{
var message = new JObject(
new JProperty("request ID", _requestId),
new JProperty("method", _method),
new JProperty("type", _type),
new JProperty("state", _state));
return ToString("communication", message);
}
}
}
|