Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tribal-tec committed Jun 14, 2013
1 parent 646877f commit 01ffd27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Movie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Movie::Movie(std::string uri)
// open movie file
if(avformat_open_input(&avFormatContext_, uri.c_str(), NULL, NULL) != 0)
{
put_flog(LOG_ERROR, "could not open movie file");
put_flog(LOG_ERROR, "could not open movie file %s", uri.c_str());
return;
}

Expand Down

0 comments on commit 01ffd27

Please sign in to comment.