VirtualBox

Ignore:
Timestamp:
Aug 11, 2008 2:36:14 PM (16 years ago)
Author:
vboxsync
Message:

Fixes in clienttest.java. Additional debug messages in Perf classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/Performance.cpp

    r11180 r11336  
    435435    ElementList::const_iterator it;
    436436
    437     printf("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str());
     437    LogFlowThisFunc(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str()));
    438438    for (it = mElements.begin(); it != mElements.end(); it++)
    439439    {
    440         printf("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str());
     440        LogFlowThisFunc(("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str()));
    441441        if ((*it).first.isNull() || (*it).first == object)
    442442        {
     
    444444            if ((*it).second == "*" || (*it).second == name)
    445445            {
    446                 printf("...found!\n");
     446                LogFlowThisFunc(("...found!\n"));
    447447                return true;
    448448            }
    449449        }
    450450    }
    451     printf("...no matches!\n");
     451    LogFlowThisFunc(("...no matches!\n"));
    452452    return false;
    453453}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette