@@ -1421,7 +1421,7 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
14211421 if (canvasSplit->displayBuffer != nullptr )
14221422 canvasSplit->displayBuffer ->addDisplay (canvasSplit->splitID );
14231423
1424- LOGD (" Added displays in " , MS_FROM_START, " milliseconds" );
1424+ // LOGD(" Added displays in ", MS_FROM_START, " milliseconds");
14251425 start = Time::getHighResolutionTicks ();
14261426
14271427 // RANGE
@@ -1439,14 +1439,14 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
14391439 lfpDisplay->setRange (ranges[2 ].getFloatValue () * rangeGain[2 ], ContinuousChannel::Type::ADC);
14401440
14411441
1442- LOGD (" Set range in " , MS_FROM_START, " milliseconds" );
1442+ // LOGD(" Set range in ", MS_FROM_START, " milliseconds");
14431443 start = Time::getHighResolutionTicks ();
14441444
14451445 // TIMEBASE
14461446 timebaseSelection->setText (xmlNode->getStringAttribute (" Timebase" ), dontSendNotification);
14471447 canvasSplit->setTimebase (xmlNode->getStringAttribute (" Timebase" ).getFloatValue ());
14481448
1449- LOGD (" Set timebase in " , MS_FROM_START, " milliseconds" );
1449+ // LOGD(" Set timebase in ", MS_FROM_START, " milliseconds");
14501450 start = Time::getHighResolutionTicks ();
14511451
14521452 // SPREAD
@@ -1484,38 +1484,38 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
14841484 canvasSplit->drawSaturationWarning = true ;
14851485 }
14861486
1487- LOGD (" Additional settings in " , MS_FROM_START, " milliseconds" );
1487+ // LOGD(" Additional settings in ", MS_FROM_START, " milliseconds");
14881488 start = Time::getHighResolutionTicks ();
14891489
14901490 // TOGGLE BUTTONS
14911491
14921492 setChannelsReversed (xmlNode->getBoolAttribute (" reverseOrder" , false ));
14931493
1494- LOGD (" --> setChannelsReversed: " , MS_FROM_START, " milliseconds" );
1494+ // LOGD(" --> setChannelsReversed: ", MS_FROM_START, " milliseconds");
14951495 start = Time::getHighResolutionTicks ();
14961496
14971497 setSortByDepth (xmlNode->getBoolAttribute (" sortByDepth" , false ));
14981498
1499- LOGD (" --> setSortByDepth: " , MS_FROM_START, " milliseconds" );
1499+ // LOGD(" --> setSortByDepth: ", MS_FROM_START, " milliseconds");
15001500 start = Time::getHighResolutionTicks ();
15011501
15021502 setShowChannelNumbers (xmlNode->getBoolAttribute (" showChannelNum" , false ));
15031503
1504- LOGD (" --> setShowChannelNumbers: " , MS_FROM_START, " milliseconds" );
1504+ // LOGD(" --> setShowChannelNumbers: ", MS_FROM_START, " milliseconds");
15051505 start = Time::getHighResolutionTicks ();
15061506
15071507 setInputInverted (xmlNode->getBoolAttribute (" isInverted" , false ));
15081508
1509- LOGD (" --> setInputInverted: " , MS_FROM_START, " milliseconds" );
1509+ // LOGD(" --> setInputInverted: ", MS_FROM_START, " milliseconds");
15101510 start = Time::getHighResolutionTicks ();
15111511
15121512 setAveraging (xmlNode->getBoolAttribute (" trialAvg" , false ));
1513- LOGD (" --> setAveraging: " , MS_FROM_START, " milliseconds" );
1513+ // LOGD(" --> setAveraging: ", MS_FROM_START, " milliseconds");
15141514 start = Time::getHighResolutionTicks ();
15151515
15161516 setMedianOffset (xmlNode->getBoolAttribute (" subtractOffset" , false ));
15171517
1518- LOGD (" --> setMedianOffset: " , MS_FROM_START, " milliseconds" );
1518+ // LOGD(" --> setMedianOffset: ", MS_FROM_START, " milliseconds");
15191519 start = Time::getHighResolutionTicks ();
15201520
15211521 // CHANNEL SKIP
@@ -1528,15 +1528,15 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
15281528 canvasSplit->setTriggerChannel (triggerSourceSelection->getSelectedId () - 2 );
15291529 processor->setParameter (triggerSourceSelection->getSelectedId () - 2 , float (canvasSplit->splitID ));
15301530
1531- LOGD (" Set trigger source in " , MS_FROM_START, " milliseconds" );
1531+ // LOGD(" Set trigger source in ", MS_FROM_START, " milliseconds");
15321532 start = Time::getHighResolutionTicks ();
15331533
15341534 // drawMethodButton->setToggleState(xmlNode->getBoolAttribute("drawMethod", true), sendNotification);
15351535
15361536 lfpDisplay->setScrollPosition (xmlNode->getIntAttribute (" ScrollX" ),
15371537 xmlNode->getIntAttribute (" ScrollY" ));
15381538
1539- LOGD (" Set scroll position in " , MS_FROM_START, " milliseconds" );
1539+ // LOGD(" Set scroll position in ", MS_FROM_START, " milliseconds");
15401540 start = Time::getHighResolutionTicks ();
15411541
15421542 int eventButtonState = xmlNode->getIntAttribute (" EventButtonState" );
@@ -1564,7 +1564,7 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
15641564
15651565 }
15661566
1567- LOGD (" Set channel display state in " , MS_FROM_START, " milliseconds" );
1567+ // LOGD(" Set channel display state in ", MS_FROM_START, " milliseconds");
15681568
15691569 if (canvas->optionsDrawerIsOpen )
15701570 showHideOptionsButton->setToggleState (true , dontSendNotification);
@@ -1578,7 +1578,7 @@ void LfpDisplayOptions::loadParameters(XmlElement* xml)
15781578
15791579 lfpDisplay->restoreViewPosition ();
15801580
1581- LOGD (" Restored view in " , MS_FROM_START, " milliseconds" );
1581+ // LOGD(" Restored view in ", MS_FROM_START, " milliseconds");
15821582 }
15831583
15841584
0 commit comments