VirtualBox

Ignore:
Timestamp:
Sep 1, 2011 1:30:54 PM (13 years ago)
Author:
vboxsync
Message:

Additions/common/VBoxGuest: LogRel -> Log (possible release log spamming)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp

    r38592 r38599  
    22832283        if (pSession->R0Process != NIL_RTR0PROCESS) \
    22842284        { \
    2285             LogRel(("VBoxGuestCommonIOCtl: " mnemonic ": Ring-0 only, caller is %RTproc/%p\n", \
    2286                  pSession->Process, (uintptr_t)pSession->R0Process)); \
     2285            LogFunc((mnemonic ": Ring-0 only, caller is %RTproc/%p\n", \
     2286                     pSession->Process, (uintptr_t)pSession->R0Process)); \
    22872287            return VERR_PERMISSION_DENIED; \
    22882288        } \
     
    22922292        if (cbData < (cbMin)) \
    22932293        { \
    2294             LogRel(("VBoxGuestCommonIOCtl: " mnemonic ": cbData=%#zx (%zu) min is %#zx (%zu)\n", \
    2295                  cbData, cbData, (size_t)(cbMin), (size_t)(cbMin))); \
     2294            LogFunc((mnemonic ": cbData=%#zx (%zu) min is %#zx (%zu)\n", \
     2295                     cbData, cbData, (size_t)(cbMin), (size_t)(cbMin))); \
    22962296            return VERR_BUFFER_OVERFLOW; \
    22972297        } \
    22982298        if ((cbMin) != 0 && !VALID_PTR(pvData)) \
    22992299        { \
    2300             LogRel(("VBoxGuestCommonIOCtl: " mnemonic ": Invalid pointer %p\n", pvData)); \
     2300            LogFunc((mnemonic ": Invalid pointer %p\n", pvData)); \
    23012301            return VERR_INVALID_POINTER; \
    23022302        } \
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