Print timestamp when opening files, as requested by Douglas.
Fixes #2052
This commit is contained in:
parent
6375212ac9
commit
7037984499
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue