add logging & plish up

This commit is contained in:
Pilzinsel64
2024-08-16 07:22:29 +02:00
parent 2efb4f141c
commit e24e6e5bca
5 changed files with 54 additions and 6 deletions

View File

@@ -1,4 +1,6 @@
namespace Pilz.Net.Api;
using Castle.Core.Logging;
namespace Pilz.Net.Api;
public interface IApiServer
{
@@ -12,6 +14,8 @@ public interface IApiServer
IMessageSerializer Serializer { get; }
ILogger Log { get; set; }
void Start();
void Stop();