IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27705


Ignore:
Timestamp:
Apr 15, 2010, 6:44:23 PM (16 years ago)
Author:
Paul Price
Message:

Fix name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppSub/src/ppSubExit.c

    r27188 r27705  
    1717          case PPSUB_ERR_UNKNOWN:
    1818          case PS_ERR_UNKNOWN:
    19             psLogMsg("ppStack", PS_LOG_WARN, "Unknown error code: %x", errorCode);
     19            psLogMsg("ppSub", PS_LOG_WARN, "Unknown error code: %x", errorCode);
    2020            exitValue = PS_EXIT_UNKNOWN_ERROR;
    2121            break;
     
    2727          case PM_ERR_SYS:
    2828          case PPSUB_ERR_IO:
    29             psLogMsg("ppStack", PS_LOG_WARN, "I/O error code: %x", errorCode);
     29            psLogMsg("ppSub", PS_LOG_WARN, "I/O error code: %x", errorCode);
    3030            exitValue = PS_EXIT_SYS_ERROR;
    3131            break;
     
    3636          case PPSUB_ERR_ARGUMENTS:
    3737          case PPSUB_ERR_CONFIG:
    38             psLogMsg("ppStack", PS_LOG_WARN, "Configuration error code: %x", errorCode);
     38            psLogMsg("ppSub", PS_LOG_WARN, "Configuration error code: %x", errorCode);
    3939            exitValue = PS_EXIT_CONFIG_ERROR;
    4040            break;
     
    4242          case PPSUB_ERR_DATA:
    4343          case PPSUB_ERR_NO_OVERLAP:
    44             psLogMsg("ppStack", PS_LOG_WARN, "Data error code: %x", errorCode);
     44            psLogMsg("ppSub", PS_LOG_WARN, "Data error code: %x", errorCode);
    4545            exitValue = PS_EXIT_DATA_ERROR;
    4646            break;
     
    4949          case PPSUB_ERR_NOT_IMPLEMENTED:
    5050          case PPSUB_ERR_PROG:
    51             psLogMsg("ppStack", PS_LOG_WARN, "Programming error code: %x", errorCode);
     51            psLogMsg("ppSub", PS_LOG_WARN, "Programming error code: %x", errorCode);
    5252            exitValue = PS_EXIT_PROG_ERROR;
    5353            break;
    5454          default:
    5555            // It's a programming error if we're not dealing with the error correctly
    56             psLogMsg("ppStack", PS_LOG_WARN, "Unrecognised error code: %x", errorCode);
     56            psLogMsg("ppSub", PS_LOG_WARN, "Unrecognised error code: %x", errorCode);
    5757            exitValue = PS_EXIT_PROG_ERROR;
    5858            break;
Note: See TracChangeset for help on using the changeset viewer.