TS lib verbosity tweak
This commit is contained in:
parent
61d116e2f3
commit
017258b1b9
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ namespace TS {
|
|||
long long int bPos = data.tellg();
|
||||
if(!data.read (strBuf,188))
|
||||
{
|
||||
HIGH_MSG("failed to read 188 bytes");
|
||||
if (!data.eof()){
|
||||
HIGH_MSG("failed to read 188 bytes: %s", strerror(errno));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue