mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-10 16:22:32 +00:00
rtsp-server: Use log() instead of log_with_object() for now in the 0.15 branch
See 8077b7ac82
This commit is contained in:
parent
451c198cec
commit
a1fbb359ea
2 changed files with 9 additions and 9 deletions
|
@ -870,7 +870,7 @@ where
|
|||
) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -1107,7 +1107,7 @@ where
|
|||
) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
|
|
@ -506,7 +506,7 @@ where
|
|||
match imp.prepare(&wrap, &from_glib_borrow(thread)) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -525,7 +525,7 @@ where
|
|||
match imp.unprepare(&wrap) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -544,7 +544,7 @@ where
|
|||
match imp.suspend(&wrap) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -563,7 +563,7 @@ where
|
|||
match imp.unsuspend(&wrap) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -648,7 +648,7 @@ where
|
|||
let res = match imp.setup_rtpbin(&wrap, &from_glib_borrow(rtpbin)) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
};
|
||||
|
@ -678,7 +678,7 @@ where
|
|||
) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
@ -773,7 +773,7 @@ where
|
|||
match imp.handle_sdp(&wrap, &*(sdp as *const gst_sdp::SDPMessageRef)) {
|
||||
Ok(()) => glib_sys::GTRUE,
|
||||
Err(err) => {
|
||||
err.log_with_object(&wrap);
|
||||
err.log();
|
||||
glib_sys::GFALSE
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue