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_psLogMsg02.c

    r852 r963  
    1717    printPositiveTestHeader(stdout,
    1818                            "psLogMsg functions",
    19                             "psSetLogFormat()");
     19                            "psLogSetFormat()");
    2020
    2121
    22     printf("------------- psSetLogFormat() -------------\n");
    23     psSetLogFormat("");
     22    printf("------------- psLogSetFormat() -------------\n");
     23    psLogSetFormat("");
    2424    for (i=0;i<10;i++) {
    2525        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    2626    }
    2727
    28     printf("------------- psSetLogFormat(T) -------------\n");
    29     psSetLogFormat("T");
     28    printf("------------- psLogSetFormat(T) -------------\n");
     29    psLogSetFormat("T");
    3030    for (i=0;i<10;i++) {
    3131        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    3232    }
    3333
    34     printf("------------- psSetLogFormat(H) -------------\n");
    35     psSetLogFormat("TH");
     34    printf("------------- psLogSetFormat(H) -------------\n");
     35    psLogSetFormat("TH");
    3636    for (i=0;i<10;i++) {
    3737        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    3838    }
    3939
    40     printf("------------- psSetLogFormat(L) -------------\n");
    41     psSetLogFormat("L");
     40    printf("------------- psLogSetFormat(L) -------------\n");
     41    psLogSetFormat("L");
    4242    for (i=0;i<10;i++) {
    4343        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    4444    }
    4545
    46     printf("------------- psSetLogFormat(N) -------------\n");
    47     psSetLogFormat("N");
     46    printf("------------- psLogSetFormat(N) -------------\n");
     47    psLogSetFormat("N");
    4848    for (i=0;i<10;i++) {
    4949        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    5050    }
    5151
    52     printf("------------- psSetLogFormat(M) -------------\n");
    53     psSetLogFormat("M");
     52    printf("------------- psLogSetFormat(M) -------------\n");
     53    psLogSetFormat("M");
    5454    for (i=0;i<10;i++) {
    5555        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
    5656    }
    5757
    58     printf("------------- psSetLogFormat(THLNM) -------------\n");
    59     psSetLogFormat("THLNM");
     58    printf("------------- psLogSetFormat(THLNM) -------------\n");
     59    psLogSetFormat("THLNM");
    6060    for (i=0;i<10;i++) {
    6161        psLogMsg(__func__, i, "Hello World!  My level is %d\n", i);
     
    6464    printFooter(stdout,
    6565                "psLogMsg functions",
    66                 "psSetLogFormat()",
     66                "psLogSetFormat()",
    6767                testStatus);
    6868
Note: See TracChangeset for help on using the changeset viewer.