Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
b1cb2de2
Commit
b1cb2de2
authored
Dec 03, 2014
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence noise debug statements
This makes unit test output easier to read
parent
dfe7c2ed
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
5 deletions
+8
-5
MAVLinkProtocol.cc
src/comm/MAVLinkProtocol.cc
+1
-1
UASParameterDataModel.cc
src/uas/UASParameterDataModel.cc
+1
-1
terminalconsole.cpp
src/ui/configuration/terminalconsole.cpp
+1
-1
LinechartPlot.cc
src/ui/linechart/LinechartPlot.cc
+1
-1
QGCMapWidget.cc
src/ui/map/QGCMapWidget.cc
+3
-0
menuactionhelper.cpp
src/ui/menuactionhelper.cpp
+1
-1
No files found.
src/comm/MAVLinkProtocol.cc
View file @
b1cb2de2
...
...
@@ -220,7 +220,7 @@ void MAVLinkProtocol::linkStatusChanged(bool connected)
// Track the links which are connected to the protocol
QList
<
LinkInterface
*>
_connectedLinks
;
///< List of all links connected to protocol
qDebug
()
<<
"linkStatusChanged"
<<
connected
;
//
qDebug() << "linkStatusChanged" << connected;
if
(
link
)
{
...
...
src/uas/UASParameterDataModel.cc
View file @
b1cb2de2
...
...
@@ -480,7 +480,7 @@ void UASParameterDataModel::loadParamMetaInfoFromStream(QTextStream& stream)
{
// tooltip
paramDescriptions
.
insert
(
parts
.
at
(
0
).
trimmed
(),
parts
.
at
(
6
).
trimmed
());
qDebug
()
<<
"PARAM META:"
<<
parts
.
at
(
0
).
trimmed
();
//
qDebug() << "PARAM META:" << parts.at(0).trimmed();
}
}
}
...
...
src/ui/configuration/terminalconsole.cpp
View file @
b1cb2de2
...
...
@@ -118,7 +118,7 @@ void TerminalConsole::fillPortsInfo(QComboBox &comboxBox)
<<
(
info
.
productIdentifier
()
?
QString
::
number
(
info
.
productIdentifier
(),
16
)
:
QString
());
comboxBox
.
insertItem
(
0
,
list
.
first
(),
list
);
qDebug
()
<<
"Inserting "
<<
list
.
first
();
//
qDebug() << "Inserting " << list.first();
}
}
...
...
src/ui/linechart/LinechartPlot.cc
View file @
b1cb2de2
...
...
@@ -471,7 +471,7 @@ void LinechartPlot::setCurveColor(QString id, QColor color)
// Change the color of the curve.
curve
->
setPen
(
QPen
(
QBrush
(
color
),
curveWidth
));
qDebug
()
<<
"Setting curve"
<<
id
<<
"to"
<<
color
;
//
qDebug() << "Setting curve" << id << "to" << color;
// And change the color of the symbol, making sure to preserve the symbol style
const
QwtSymbol
*
oldSymbol
=
curve
->
symbol
();
...
...
src/ui/map/QGCMapWidget.cc
View file @
b1cb2de2
...
...
@@ -260,6 +260,8 @@ void QGCMapWidget::loadSettings(bool changePosition)
trailInterval
=
settings
.
value
(
"TRAIL_INTERVAL"
,
trailInterval
).
toFloat
();
settings
.
endGroup
();
#if 0
// FIXME: NYI
// SET CORRECT MENU CHECKBOXES
// Set the correct trail interval
if (trailType == mapcontrol::UAVTrailType::ByDistance)
...
...
@@ -272,6 +274,7 @@ void QGCMapWidget::loadSettings(bool changePosition)
// XXX
qDebug() << "WARNING: Settings loading for trail type (ByTimeElapsed) not implemented";
}
#endif
// SET TRAIL TYPE
foreach
(
mapcontrol
::
UAVItem
*
uav
,
GetUAVS
())
...
...
src/ui/menuactionhelper.cpp
View file @
b1cb2de2
...
...
@@ -31,7 +31,7 @@ void MenuActionHelper::removeDockWidget()
QObject
*
dockWidget
=
QObject
::
sender
();
Q_ASSERT
(
dockWidget
);
qDebug
()
<<
"Dockwidget:"
<<
dockWidget
->
objectName
()
<<
"of type"
<<
dockWidget
->
metaObject
()
->
className
();
//
qDebug() << "Dockwidget:" << dockWidget->objectName() << "of type" << dockWidget->metaObject()->className();
QAction
*
action
=
m_menuToDockNameMap
.
key
(
dockWidget
->
objectName
());
if
(
action
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment