mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2025-03-07 19:41:17 +00:00
pad: change the pad name log cat
This commit is contained in:
parent
9a16fb4912
commit
1c10424e9e
1 changed files with 1 additions and 2 deletions
|
@ -18,7 +18,6 @@
|
|||
// SPDX-License-Identifier: GPL-3.0-only
|
||||
|
||||
use crate::logger;
|
||||
use crate::GPS_INFO;
|
||||
|
||||
use crate::gps::ElementInfo;
|
||||
use crate::graphmanager::{PortDirection, PortPresence};
|
||||
|
@ -72,7 +71,7 @@ impl PadInfo {
|
|||
if factory.num_pad_templates() > 0 {
|
||||
let pads = factory.static_pad_templates();
|
||||
for pad in pads {
|
||||
GPS_INFO!("Found a pad name {}", pad.name_template());
|
||||
GPS_TRACE!("Found a pad name {}", pad.name_template());
|
||||
if pad.presence() == gst::PadPresence::Always
|
||||
|| (include_on_request
|
||||
&& (pad.presence() == gst::PadPresence::Request
|
||||
|
|
Loading…
Reference in a new issue