You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 25, 2020. It is now read-only.
Set up a logging abstraction, OGVLogger
Accessible from OGVKit.singleton.logger; override the default logging
level by eg:
OGVKit.singleton.logger.level = OGVLogLevelDebug;
This is done in the example application. By default, only errors
and fatals will be logged to console.
You can subclass OGVLogger and substitute an alternate place to
put the logs if you like.
Log messages are now distributed among debug, warning, error, and
fatal levels. May adjust details later.
Fixes#116
fix & tag 0.5.7 - seek at end fixes
Fixes an edge case in seek to end where no returned packets
would cause an attempt to start playback data at -1 instead
of the target time, which threw an assertion fail.