mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 15:27:53 +00:00
Merge pull request #238 from kanoi/master
fpgautils.c include a debug message for all unknown open errors
This commit is contained in:
commit
fab619ad38
@ -159,6 +159,7 @@ serial_open(const char*devpath, unsigned long baud, signed short timeout, bool p
|
||||
applog(LOG_ERR, "%s is already in use by another process", devpath);
|
||||
break;
|
||||
default:
|
||||
applog(LOG_DEBUG, "Open %s failed, GetLastError:%u", devpath, e);
|
||||
break;
|
||||
}
|
||||
return -1;
|
||||
@ -196,6 +197,9 @@ serial_open(const char*devpath, unsigned long baud, signed short timeout, bool p
|
||||
{
|
||||
if (errno == EACCES)
|
||||
applog(LOG_ERR, "Do not have user privileges required to open %s", devpath);
|
||||
else
|
||||
applog(LOG_DEBUG, "Open %s failed, errno:%d", devpath, errno);
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user