Skip to content

Commit

Permalink
[eDVBMetaParser]
Browse files Browse the repository at this point in the history
* add debug log for open meta file
  • Loading branch information
jbleyel committed Jan 9, 2023
1 parent 329cded commit 679d281
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/dvb/metaparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,10 @@ int eDVBMetaParser::updateMeta(const std::string &tsname)
ref.path = "";

CFile f(filename.c_str(), "w");
if (!f)
if (!f) {
eDebug("[eDVBMetaParser] error updateMeta, couldn't open '%s' for writing: %m", filename.c_str());
return -ENOENT;
}

if (ref.getName().empty())
{
Expand Down

0 comments on commit 679d281

Please sign in to comment.