mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: getRecordingFromHost logs
parent
8a5ff43c27
commit
e9251da21b
|
@ -342,7 +342,9 @@ public class ComposedRecordingService {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Recording getRecordingFromHost(String recordingId) {
|
private Recording getRecordingFromHost(String recordingId) {
|
||||||
|
log.info(this.openviduConfig.getOpenViduRecordingPath() + RECORDING_ENTITY_FILE + recordingId);
|
||||||
File file = new File(this.openviduConfig.getOpenViduRecordingPath() + RECORDING_ENTITY_FILE + recordingId);
|
File file = new File(this.openviduConfig.getOpenViduRecordingPath() + RECORDING_ENTITY_FILE + recordingId);
|
||||||
|
log.info("File exists: " + file.exists());
|
||||||
return this.getRecordingFromEntityFile(file);
|
return this.getRecordingFromEntityFile(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue