mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-e2e: media file metadata logging improved
parent
30ae0282db
commit
d6921a963d
|
@ -54,6 +54,8 @@ public class MultimediaFileMetadata {
|
||||||
if (videoInfo != null) {
|
if (videoInfo != null) {
|
||||||
this.videoSize = videoInfo.getSize();
|
this.videoSize = videoInfo.getSize();
|
||||||
}
|
}
|
||||||
|
log.info("File {} {} an audio track", f.getName(), this.audioInfo != null ? "has" : "doesn't have");
|
||||||
|
log.info("File {} {} a video track", f.getName(), this.videoInfo != null ? "has" : "doesn't have");
|
||||||
} catch (EncoderException e) {
|
} catch (EncoderException e) {
|
||||||
log.error("Error getting multimedia information from file {}. Error: {}", f.getAbsolutePath(),
|
log.error("Error getting multimedia information from file {}. Error: {}", f.getAbsolutePath(),
|
||||||
e.getMessage());
|
e.getMessage());
|
||||||
|
|
Loading…
Reference in New Issue