IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 9, 2004, 2:09:26 PM (22 years ago)
Author:
gusciora
Message:

renamed the log functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sysUtils/tst_psLogMsg03.c

    r852 r963  
    1818    printPositiveTestHeader(stdout,
    1919                            "psLogMsg functions",
    20                             "psSetLogDestination()");
     20                            "psLogSetDestination()");
    2121
    22     printf("------------- psSetLogDestination(PS_LOG_NONE) -------------\n");
    23     psSetLogDestination(PS_LOG_NONE);
     22    printf("------------- psLogSetDestination(PS_LOG_NONE) -------------\n");
     23    psLogSetDestination(PS_LOG_NONE);
    2424    for (i=0;i<10;i++) {
    2525        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    2626    }
    2727
    28     printf("------------- psSetLogDestination(PS_LOG_TO_STDERR) -------------\n");
    29     psSetLogDestination(PS_LOG_TO_STDERR);
     28    printf("------------- psLogSetDestination(PS_LOG_TO_STDERR) -------------\n");
     29    psLogSetDestination(PS_LOG_TO_STDERR);
    3030    for (i=0;i<10;i++) {
    3131        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    3232    }
    3333
    34     printf("------------- psSetLogDestination(PS_LOG_TO_STDOUT) -------------\n");
    35     psSetLogDestination(PS_LOG_TO_STDOUT);
     34    printf("------------- psLogSetDestination(PS_LOG_TO_STDOUT) -------------\n");
     35    psLogSetDestination(PS_LOG_TO_STDOUT);
    3636    for (i=0;i<10;i++) {
    3737        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     
    4040    printFooter(stdout,
    4141                "psLogMsg functions",
    42                 "psSetLogDestination()",
     42                "psLogSetDestination()",
    4343                testStatus);
    4444
Note: See TracChangeset for help on using the changeset viewer.