Print timestamp when opening files, as requested by Douglas.

Fixes #2052
This commit is contained in:
mark 2006-11-29 09:10:15 +00:00
parent 6375212ac9
commit 7037984499
1 changed files with 6 additions and 0 deletions

View File

@ -319,7 +319,13 @@ GstreamerPlayer :: open(const std::string fileUrl)
close();
}
GTimeVal time;
g_get_current_time(&time);
Ptr<gchar>::Ref isotime;
isotime.reset(g_time_val_to_iso8601(&time));
debug() << "Opening URL: " << fileUrl << endl;
debug() << "Timestamp: " << isotime << endl;
std::string filePath;