openvidu-server: minor log update

pull/375/head
pabloFuente 2019-06-20 16:25:34 +02:00
parent bf6148d5cf
commit a57f357527
1 changed files with 3 additions and 3 deletions

View File

@ -160,12 +160,12 @@ public abstract class RecordingService {
try { try {
String response = CommandExecutor.execCommand("/bin/sh", "-c", command); String response = CommandExecutor.execCommand("/bin/sh", "-c", command);
if ("".equals(response)) { if ("".equals(response)) {
log.info("Individual recording file permissions successfully updated"); log.info("KMS recording file permissions successfully updated");
} else { } else {
log.error("Individual recording file permissions failed to update: {}", response); log.error("KMS recording file permissions failed to update: {}", response);
} }
} catch (IOException | InterruptedException e) { } catch (IOException | InterruptedException e) {
log.error("Individual recording file permissions failed to update. Error: {}", e.getMessage()); log.error("KMS recording file permissions failed to update. Error: {}", e.getMessage());
} }
} }