Skip to content

Commit

Permalink
Reduced meaningless logging
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Feb 6, 2020
1 parent 077001e commit fa62bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/NCPackageSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ bool NCPackageSelector::handleEvent ( const NCursesEvent& event )
if ( event == NCursesEvent::handled )
return false;

yuiMilestone() << "widget event: " << event << endl;
// yuiMilestone() << "widget event: " << event << endl;
// Call the appropriate handler
if ( event == NCursesEvent::button )
{
Expand Down
2 changes: 1 addition & 1 deletion src/NCPackageSelectorPluginImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ NCPackageSelectorPluginImpl::runPkgSelection( YDialog * dialog,
result = ncSelector->handleEvent( event );
// reset to function keys of the main dialog
ncd->setStatusLine();
yuiMilestone() << "Result of handleEvent: " << (result?"true":"false") << endl;
// yuiMilestone() << "Result of handleEvent: " << (result?"true":"false") << endl;
}
while ( event != NCursesEvent::cancel && result == true );
}
Expand Down

0 comments on commit fa62bfe

Please sign in to comment.