1
0
mirror of https://github.com/DarthAffe/OBD.NET.git synced 2025-12-13 01:08:30 +00:00
Roman Lumetsberger 9dd42cba6f Moved common parts into ODB.NET.Common
re-factored SerialConnection to ISerialConnection interface and removed stuff which is not compatible with NetStandard
2017-05-07 09:25:57 +02:00

8 lines
133 B
C#

namespace OBD.NET.Logging
{
public interface IOBDLogger
{
void WriteLine(string text, OBDLogLevel level);
}
}