

This is a patcher time mod for BepInEx which provides a simple WebSocket Server that forward's bepinex log messages to connected WebSockets on the local machine.
This is primarily intended to provide the ability to create alternative log display systems for bepinex.
WebSlog forwards messages over Websockets using protobuf-net , an implementation of Google's Protobuf.
The protobuf definition for log messages is as follows;
[ProtoContract]
public class LogEntry
{
[ProtoMember(1)]
public string Source { get; internal set; }
[ProtoMember(2)]
public string Level { get; internal set; }
[ProtoMember(3)]
public int LevelCode { get; internal set; }
[ProtoMember(4)]
public string Data { get; internal set; }
}