Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
37add8b5
Commit
37add8b5
authored
Sep 29, 2009
by
hjk
Browse files
debugger: suppress debug output for known state changes triggered by initialization
parent
10fa3b2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggermanager.cpp
View file @
37add8b5
...
...
@@ -1608,7 +1608,8 @@ void DebuggerManager::setState(DebuggerState state)
QString
msg
=
_
(
"State changed from %1(%2) to %3(%4)."
)
.
arg
(
stateName
(
d
->
m_state
)).
arg
(
d
->
m_state
).
arg
(
stateName
(
state
)).
arg
(
state
);
qDebug
()
<<
msg
;
if
(
!
((
d
->
m_state
==
-
1
&&
state
==
0
)
||
(
d
->
m_state
==
0
&&
state
==
0
)))
qDebug
()
<<
msg
<<
d
->
m_state
<<
state
;
if
(
!
isAllowedTransition
(
d
->
m_state
,
state
))
qDebug
()
<<
"UNEXPECTED STATE TRANSITION: "
<<
msg
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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