Skip to content

Commit a465fcd

Browse files
authored
refactor(dgw): follow up to PR 1167 (#1168)
1 parent 0613d99 commit a465fcd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

devolutions-gateway/src/api/jrec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ async fn shadow_recording(
505505
}
506506

507507
if !xmf::is_init() {
508-
return Err(HttpError::internal().msg("XMF dynamic library is not initialized"));
508+
return Err(HttpError::internal().msg("XMF native library is not loaded"));
509509
}
510510

511511
let notify = recordings.subscribe_to_recording_finish(id).await.map_err(

devolutions-gateway/src/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl GatewayService {
9797
Err(error) => warn!(
9898
%path,
9999
%error,
100-
"Failed to load XMF native library, video processing (recording remuxing,video streaming) features are disabled"
100+
"Failed to load XMF native library, features requiring video processing such as remuxing and shadowing are disabled"
101101
),
102102
}
103103
}

0 commit comments

Comments
 (0)