We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3538eb7 commit 31837ecCopy full SHA for 31837ec
src/txtinputfileconn.cc
@@ -516,8 +516,12 @@ namespace dd
516
if (!fileops::file_exists(vocabfname))
517
{
518
if (required)
519
- throw InputConnectorBadParamException("cannot find vocabulary file "
520
- + vocabfname);
+ {
+ _logger->error("cannot find vocabulary file " + vocabfname);
521
+
522
+ throw InputConnectorBadParamException(
523
+ "cannot find vocabulary file " + vocabfname);
524
+ }
525
else
526
return;
527
}
0 commit comments