1
0
mirror of https://github.com/DarthAffe/OBD.NET.git synced 2025-12-12 16:58: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

11 lines
133 B
C#

namespace OBD.NET.Logging
{
public enum OBDLogLevel
{
None,
Error,
Verbose,
Debug
}
}