Skip to content

Commit ba5814e

Browse files
authored
Log driver version in case connection fails
1 parent a1fe21b commit ba5814e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LibDmd/Output/ZeDMD/ZeDMDUsbBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public abstract class ZeDMDUsbBase : ZeDMDBase
2525

2626
if (!IsAvailable) {
2727
if (string.IsNullOrEmpty(Port)) {
28-
Logger.Info(Name + " device not found at any port");
28+
Logger.Info(Name + " device not found at any port, libzedmd version: " + DriverVersion);
2929
}
3030
else {
31-
Logger.Info(Name + " device not found at port " + Port);
31+
Logger.Info(Name + " device not found at port " + Port + ", libzedmd version: " + DriverVersion);
3232
}
3333
return;
3434
}

0 commit comments

Comments
 (0)