Changeset 11391 in vbox for trunk/src/VBox/Main/Performance.cpp
- Timestamp:
- Aug 13, 2008 2:48:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Performance.cpp
r11383 r11391 102 102 { 103 103 mLastSampleTaken = nowAt; 104 Log FlowThisFunc (("Collecting data for obj(%p)...\n", (void *)mObject));104 Log4(("{%p} " LOG_FN_FMT ": Collecting data for obj(%p)...\n", this, __PRETTY_FUNCTION__, (void *)mObject)); 105 105 collect(); 106 106 } … … 437 437 ElementList::const_iterator it; 438 438 439 Log FlowThisFunc(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str()));439 LogAleksey(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str())); 440 440 for (it = mElements.begin(); it != mElements.end(); it++) 441 441 { 442 Log FlowThisFunc(("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str()));442 LogAleksey(("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str())); 443 443 if ((*it).first.isNull() || (*it).first == object) 444 444 { … … 451 451 } 452 452 } 453 Log FlowThisFunc(("...no matches!\n"));453 LogAleksey(("...no matches!\n")); 454 454 return false; 455 455 }
Note:
See TracChangeset
for help on using the changeset viewer.