Changeset 1086 in MondoRescue for trunk/mondo/src/common


Ignore:
Timestamp:
Feb 2, 2007, 11:21:27 PM (18 years ago)
Author:
Bruno Cornec
Message:

log_msg => mr_msg in trunk

Location:
trunk/mondo/src/common
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/src/common/libmondo-archive.c

    r1081 r1086  
    142142
    143143    if (semctl(g_sem_id, 0, IPC_RMID, sem_union) == -1) {
    144         log_msg(3, "Failed to delete semaphore");
     144        mr_msg(3, "Failed to delete semaphore");
    145145    }
    146146}
     
    159159    sem_b.sem_flg = SEM_UNDO;
    160160    if (semop(g_sem_id, &sem_b, 1) == -1) {
    161         log_msg(3, "semaphore_p failed");
     161        mr_msg(3, "semaphore_p failed");
    162162        return (0);
    163163    }
     
    177177    sem_b.sem_flg = SEM_UNDO;
    178178    if (semop(g_sem_id, &sem_b, 1) == -1) {
    179         log_msg(3, "semaphore_v failed");
     179        mr_msg(3, "semaphore_v failed");
    180180        return (0);
    181181    }
     
    237237    mr_free(command);
    238238    command = tmp;
    239     log_msg(4, "command = '%s'", command);
     239    mr_msg(4, "command = '%s'", command);
    240240
    241241    for (res = 99, tries = 0; tries < 3 && res != 0; tries++) {
    242         log_msg(5, "command='%s'", command);
     242        mr_msg(5, "command='%s'", command);
    243243        res = system(command);
    244244        tmp = last_line_of_file(MONDO_LOGFILE);
    245         log_msg(1, "res=%d; tmp='%s'", res, tmp);
     245        mr_msg(1, "res=%d; tmp='%s'", res, tmp);
    246246        if (bkpinfo->use_star && (res == 254 || res == 65024)
    247247            && strstr(tmp, "star: Processed all possible files")
    248248            && tries > 0) {
    249             log_msg(1, "Star returned nonfatal error");
     249            mr_msg(1, "Star returned nonfatal error");
    250250            res = 0;
    251251        }
     
    256256            if (p) {
    257257                p[0] = p[1] = p[2] = p[3] = ' ';
    258                 log_msg(1, "new command = '%s'", command);
     258                mr_msg(1, "new command = '%s'", command);
    259259            } else {
    260                 log_msg(3,
     260                mr_msg(3,
    261261                        "Attempt #%d failed. Pausing 3 seconds and retrying...",
    262262                        tries + 1);
     
    269269    retval += res;
    270270    if (retval) {
    271         log_msg(3, "Failed to write set %d", setno);
     271        mr_msg(3, "Failed to write set %d", setno);
    272272    } else if (tries > 1) {
    273         log_msg(3, "Succeeded in writing set %d, on try #%d", setno,
     273        mr_msg(3, "Succeeded in writing set %d, on try #%d", setno,
    274274                tries);
    275275    }
     
    348348        } else {
    349349            mr_asprintf(&zipparams, " ");
    350             log_msg(3, "%s not found. Cannot exclude zipfiles, etc.", tmp);
     350            mr_msg(3, "%s not found. Cannot exclude zipfiles, etc.", tmp);
    351351        }
    352352        mr_free(tmp);
     
    381381
    382382    for (res = 99, tries = 0; tries < 3 && res != 0; tries++) {
    383         log_msg(5, "command='%s'", command);
     383        mr_msg(5, "command='%s'", command);
    384384        res = system(command);
    385385        if (res) {
    386386            log_OS_error(command);
    387             log_msg(3,
     387            mr_msg(3,
    388388                    "Attempt #%d failed. Pausing 3 seconds and retrying...",
    389389                    tries + 1);
     
    395395    retval += res;
    396396    if (retval) {
    397         log_msg(3, "Failed to write set %d", setno);
     397        mr_msg(3, "Failed to write set %d", setno);
    398398    } else if (tries > 1) {
    399         log_msg(3, "Succeeded in writing set %d, on try #%d", setno,
     399        mr_msg(3, "Succeeded in writing set %d, on try #%d", setno,
    400400                tries);
    401401    }
     
    410410            if (free_ramdisk_space > i) {
    411411                free_ramdisk_space = i;
    412                 log_msg(2, "min(free_ramdisk_space) is now %d",
     412                mr_msg(2, "min(free_ramdisk_space) is now %d",
    413413                        free_ramdisk_space);
    414414                if (free_ramdisk_space < 10) {
     
    507507    retval += make_those_slices_phase(bkpinfo); // backup BIG files
    508508    retval += do_that_final_phase(bkpinfo); // clean up
    509     log_msg(1, "Creation of archives... complete.");
     509    mr_msg(1, "Creation of archives... complete.");
    510510    if (bkpinfo->verify_data) {
    511511        sleep(2);
     
    581581    mr_free(tmp);
    582582    mr_asprintf(&tmp, "devs_to_exclude = '%s'", devs_to_exclude);
    583     log_msg(2, tmp);
     583    mr_msg(2, tmp);
    584584    mr_free(tmp);
    585585    mvaddstr_and_log_it(g_currentY, 0,
     
    673673            mr_asprintf(&tmp, "User specified boot loader. It is '%c'.",
    674674                     bkpinfo->boot_loader);
    675             log_msg(2, tmp);
     675            mr_msg(2, tmp);
    676676            mr_free(tmp);
    677677        } else {
     
    681681            mr_asprintf(&tmp, "User specified boot device. It is '%s'.",
    682682                     bkpinfo->boot_device);
    683             log_msg(2, tmp);
     683            mr_msg(2, tmp);
    684684            mr_free(tmp);
    685685            mr_free(bootdev);
     
    759759    mr_asprintf(&tmp, "%s/BOOTLOADER.DEVICE", bkpinfo->tmpdir);
    760760    if (write_one_liner_data_file(tmp, bkpinfo->boot_device)) {
    761         log_msg(1, "%ld: Unable to write one-liner boot device", __LINE__);
     761        mr_msg(1, "%ld: Unable to write one-liner boot device", __LINE__);
    762762    }
    763763    mr_free(tmp);
     
    797797    if (write_one_liner_data_file(tmp, value)) {
    798798        res++;
    799         log_msg(1, "%ld: Unable to write one-liner backup-media-type",
     799        mr_msg(1, "%ld: Unable to write one-liner backup-media-type",
    800800                __LINE__);
    801801    }
     
    806806    if (write_one_liner_data_file(tmp, bootldr_str)) {
    807807        res++;
    808         log_msg(1, "%ld: Unable to write one-liner bootloader.name",
     808        mr_msg(1, "%ld: Unable to write one-liner bootloader.name",
    809809                __LINE__);
    810810    }
     
    822822        mr_asprintf(&tmp1, "%s/XATTR", bkpinfo->tmpdir);
    823823        if (write_one_liner_data_file(tmp1, "TRUE")) {
    824             log_msg(1, "%ld: Unable to write one-liner XATTR",
     824            mr_msg(1, "%ld: Unable to write one-liner XATTR",
    825825                __LINE__);
    826826        }
     
    830830        mr_asprintf(&tmp1, "%s/ACL", bkpinfo->tmpdir);
    831831        if (write_one_liner_data_file(tmp1, "TRUE")) {
    832             log_msg(1, "%ld: Unable to write one-liner ACL",
     832            mr_msg(1, "%ld: Unable to write one-liner ACL",
    833833                __LINE__);
    834834        }
     
    857857    mr_free(tmp);
    858858
    859     log_msg(1, "lines_in_filelist = %ld", lines_in_filelist);
     859    mr_msg(1, "lines_in_filelist = %ld", lines_in_filelist);
    860860
    861861    if (bkpinfo->backup_media_type == usb) {
     
    911911    mr_free(tmp2);
    912912
    913     log_msg(2, command);
     913    mr_msg(2, command);
    914914
    915915    //  popup_and_OK("Pausing");
     
    924924        log_to_screen("Boot+data disks were created OK");
    925925        mr_asprintf(&command, "mkdir -p /var/cache/mindi/");
    926         log_msg(2, command);
     926        mr_msg(2, command);
    927927        run_program_and_log_output(command, FALSE);
    928928        mr_free(command);
     
    931931                 "cp -f %s/images/mindi.iso /var/cache/mindi/mondorescue.iso",
    932932                 bkpinfo->scratchdir);
    933         log_msg(2, command);
     933        mr_msg(2, command);
    934934        run_program_and_log_output(command, FALSE);
    935935        mr_free(command);
     
    945945        mr_asprintf(&command, "cp -f %s/mindi-*oot*.img %s/images",
    946946                 bkpinfo->tmpdir, bkpinfo->scratchdir);
    947         log_msg(2, command);
     947        mr_msg(2, command);
    948948        run_program_and_log_output(command, FALSE);
    949949        mr_free(command);
     
    10471047        }
    10481048        if (!semaphore_p()) {
    1049             log_msg(3, "P sem failed (pid=%d)", (int) getpid());
     1049            mr_msg(3, "P sem failed (pid=%d)", (int) getpid());
    10501050            fatal_error("Cannot get semaphore P");
    10511051        }
     
    10641064                 bkpinfo->tmpdir, archiving_set_no);
    10651065        if (!does_file_exist(archiving_filelist_fname)) {
    1066             log_msg(3,
     1066            mr_msg(3,
    10671067                    "%s[%d:%d] - well, I would archive %d, except that it doesn't exist. I'll stop now.",
    10681068                    FORTY_SPACES, getpid(), this_thread_no,
     
    10761076                 archiving_set_no - ARCH_BUFFER_NUM, bkpinfo->zip_suffix);
    10771077        if (does_file_exist(tmp)) {
    1078             log_msg(4, "%s[%d:%d] - waiting for storer",
     1078            mr_msg(4, "%s[%d:%d] - waiting for storer",
    10791079                    FORTY_SPACES, getpid(), this_thread_no);
    10801080            while (does_file_exist(tmp)) {
    10811081                sleep(1);
    10821082            }
    1083             log_msg(4, "[%d] - continuing", getpid());
     1083            mr_msg(4, "[%d] - continuing", getpid());
    10841084        }
    10851085        mr_free(tmp);
    10861086
    1087         log_msg(4, "%s[%d:%d] - EXATing %d...", FORTY_SPACES, getpid(),
     1087        mr_msg(4, "%s[%d:%d] - EXATing %d...", FORTY_SPACES, getpid(),
    10881088                this_thread_no, archiving_set_no);
    10891089        if (g_getfattr) {
     
    11001100        }
    11011101
    1102         log_msg(4, "%s[%d:%d] - archiving %d...", FORTY_SPACES, getpid(),
     1102        mr_msg(4, "%s[%d:%d] - archiving %d...", FORTY_SPACES, getpid(),
    11031103                this_thread_no, archiving_set_no);
    11041104        res = archive_this_fileset(bkpinfo, archiving_filelist_fname,
     
    11291129            fatal_error("Cannot get semaphore V");
    11301130        }
    1131         log_msg(4, "%s[%d:%d] - archived %d OK", FORTY_SPACES, getpid(),
     1131        mr_msg(4, "%s[%d:%d] - archived %d OK", FORTY_SPACES, getpid(),
    11321132                this_thread_no, archiving_set_no);
    11331133        archiving_set_no++;
     
    11421142        fatal_error("Cannot get semaphore V");
    11431143    }
    1144     log_msg(3, "%s[%d:%d] - exiting", FORTY_SPACES, getpid(),
     1144    mr_msg(3, "%s[%d:%d] - exiting", FORTY_SPACES, getpid(),
    11451145            this_thread_no);
    11461146    mr_free(archiving_filelist_fname);
     
    11711171                        "Writing any remaining data to media         ");
    11721172
    1173     log_msg(1, "Closing tape/CD ... ");
     1173    mr_msg(1, "Closing tape/CD ... ");
    11741174    if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
    11751175        /* write tape/cdstream */
     
    11801180        retval += res;
    11811181        if (res) {
    1182             log_msg(1, "write_final_iso_if_necessary returned an error");
    1183         }
    1184     }
    1185     log_msg(2, "Fork is exiting ... ");
     1182            mr_msg(1, "write_final_iso_if_necessary returned an error");
     1183        }
     1184    }
     1185    mr_msg(2, "Fork is exiting ... ");
    11861186
    11871187    mvaddstr_and_log_it(g_currentY++, 74, "Done.");
     
    12341234    mr_free(g_serial_string);
    12351235    g_serial_string = tmp;
    1236     log_msg(2, "g_serial_string = '%s'", g_serial_string);
     1236    mr_msg(2, "g_serial_string = '%s'", g_serial_string);
    12371237
    12381238    mr_asprintf(&tmpfile, "%s/archives/SERIAL-STRING", bkpinfo->scratchdir);
    12391239    if (write_one_liner_data_file(tmpfile, g_serial_string)) {
    1240         log_msg(1, "%ld: Failed to write serial string", __LINE__);
     1240        mr_msg(1, "%ld: Failed to write serial string", __LINE__);
    12411241    }
    12421242    mr_free(g_serial_string);
     
    12531253            fatal_error("Cannot open backup (streaming) device");
    12541254        }
    1255         log_msg(1, "Backup (stream) opened OK");
     1255        mr_msg(1, "Backup (stream) opened OK");
    12561256        write_data_disks_to_stream(data_disks_file);
    12571257    } else {
    1258         log_msg(1, "Backing up to CD's");
     1258        mr_msg(1, "Backing up to CD's");
    12591259    }
    12601260    mr_free(data_disks_file);
     
    13241324    mr_asprintf(&command, "%s >> %s 2>> %s; rm -f %s", cmd, tempfile,
    13251325             tempfile, tempfile);
    1326     log_msg(3, command);
     1326    mr_msg(3, command);
    13271327    open_evalcall_form(title);
    13281328    if (!(pin = popen(command, "r"))) {
     
    13401340        trackno = get_trackno_from_logfile(tempfile);
    13411341        if (trackno < 0 || trackno > 80) {
    1342             log_msg(1, "Weird track#");
     1342            mr_msg(1, "Weird track#");
    13431343            continue;
    13441344        }
     
    14811481    int misc_counter_that_is_not_important = 0;
    14821482
    1483     log_msg(8, "here");
     1483    mr_msg(8, "here");
    14841484    assert(bkpinfo != NULL);
    14851485    /* BERLIOS: To be removed */
     
    15011501    *p_next_set_to_archive = 0;
    15021502    log_to_screen("Archiving regular files");
    1503     log_msg(5, "Go, Shorty. It's your birthday.");
     1503    mr_msg(5, "Go, Shorty. It's your birthday.");
    15041504    open_progress_form(_("Backing up filesystem"),
    15051505                       _("I am backing up your live filesystem now."),
     
    15081508                       get_last_filelist_number(bkpinfo) + 1);
    15091509
    1510     log_msg(5, "We're gonna party like it's your birthday.");
     1510    mr_msg(5, "We're gonna party like it's your birthday.");
    15111511
    15121512    srand((unsigned int) getpid());
     
    15211521    }                           // initialize semaphore
    15221522    for (noof_threads = 0; noof_threads < ARCH_THREADS; noof_threads++) {
    1523         log_msg(8, "Creating thread #%d", noof_threads);
     1523        mr_msg(8, "Creating thread #%d", noof_threads);
    15241524        (*p_archival_threads_running)++;
    15251525        if ((res =
     
    15311531    }
    15321532
    1533     log_msg(8, "About to enter while() loop");
     1533    mr_msg(8, "About to enter while() loop");
    15341534    while (!done_storing) {
    15351535        if (g_exiting) {
     
    15381538        if (*p_archival_threads_running == 0
    15391539            && *p_last_set_archived == storing_set_no - 1) {
    1540             log_msg(2,
     1540            mr_msg(2,
    15411541                    "No archival threads are running. The last stored set was %d and I'm looking for %d. Take off your make-up; the party's over... :-)",
    15421542                    *p_last_set_archived, storing_set_no);
     
    15721572            }
    15731573
    1574             log_msg(2, "Storing set %d", storing_set_no);
     1574            mr_msg(2, "Storing set %d", storing_set_no);
    15751575            while (!does_file_exist(storing_filelist_fname)
    15761576                   || !does_file_exist(storing_afioball_fname)) {
    1577                 log_msg(2,
     1577                mr_msg(2,
    15781578                        "Warning - either %s or %s doesn't exist yet. I'll pause 5 secs.",
    15791579                        storing_filelist_fname, storing_afioball_fname);
     
    16441644    close_progress_form();
    16451645
    1646     log_msg(2, "Joining background threads to foreground thread");
     1646    mr_msg(2, "Joining background threads to foreground thread");
    16471647    for (i = 0; i < noof_threads; i++) {
    16481648        pthread_join(archival_thread[i], pvp);
    1649         log_msg(3, "Thread %d of %d: closed OK", i + 1, noof_threads);
     1649        mr_msg(3, "Thread %d of %d: closed OK", i + 1, noof_threads);
    16501650    }
    16511651    del_semvalue();
    1652     log_msg(2, "Done.");
     1652    mr_msg(2, "Done.");
    16531653    if (retval) {
    16541654        mr_asprintf(&tmp,
     
    17341734    }
    17351735
    1736     log_msg(2, "make_iso_fs --- scratchdir=%s --- destfile=%s",
     1736    mr_msg(2, "make_iso_fs --- scratchdir=%s --- destfile=%s",
    17371737            bkpinfo->scratchdir, destfile);
    17381738    /* BERLIOS: Do not ignore getcwd result */
     
    17591759
    17601760    if (bkpinfo->call_make_iso != NULL) {
    1761         log_msg(2, "bkpinfo->call_make_iso = %s", bkpinfo->call_make_iso);
     1761        mr_msg(2, "bkpinfo->call_make_iso = %s", bkpinfo->call_make_iso);
    17621762        mr_asprintf(&tmp, "%s/archives/NOT-THE-LAST", bkpinfo->scratchdir);
    17631763        mr_asprintf(&message_to_screen, "Making an ISO (%s #%d)",
     
    18081808                mr_asprintf(&sz_blank_disk, "dvd+rw-format -force %s",
    18091809                         bkpinfo->media_device);
    1810                 log_msg(3, "sz_blank_disk = '%s'", sz_blank_disk);
     1810                mr_msg(3, "sz_blank_disk = '%s'", sz_blank_disk);
    18111811                res = run_external_binary_with_percentage_indicator_NEW
    18121812                    ("Blanking DVD disk", sz_blank_disk);
     
    18621862                 bkpinfo->backup_media_string,
    18631863                 g_current_media_number);
    1864         log_msg(1, message_to_screen);
     1864        mr_msg(1, message_to_screen);
    18651865        mr_asprintf(&result_sz, "Call to mkisofs to make ISO (%s #%d) ",
    18661866                 bkpinfo->backup_media_string,
    18671867                 g_current_media_number);
    18681868        if (bkpinfo->nonbootable_backup) {
    1869             log_msg(1, "Making nonbootable backup");
     1869            mr_msg(1, "Making nonbootable backup");
    18701870// FIXME --- change mkisofs string to MONDO_MKISOFS_NONBOOTABLE and add ' .' at end
    18711871            res = eval_call_to_make_ISO(bkpinfo,
     
    18741874                                        MONDO_LOGFILE, message_to_screen);
    18751875        } else {
    1876             log_msg(1, "Making bootable backup");
     1876            mr_msg(1, "Making bootable backup");
    18771877
    18781878#ifdef __FreeBSD__
     
    18811881
    18821882
    1883             log_msg(1, "make_cd_use_lilo is actually %d",
     1883            mr_msg(1, "make_cd_use_lilo is actually %d",
    18841884                    bkpinfo->make_cd_use_lilo);
    18851885            if (bkpinfo->make_cd_use_lilo) {
    1886                 log_msg(1, "make_cd_use_lilo = TRUE");
     1886                mr_msg(1, "make_cd_use_lilo = TRUE");
    18871887// FIXME --- change mkisofs string to MONDO_MKISOFS_REGULAR_SYSLINUX/LILO depending on bkpinfo->make_cd_usE_lilo
    18881888// and add ' .' at end
    18891889#ifdef __IA64__
    1890                 log_msg(1, "IA64 --> elilo");
     1890                mr_msg(1, "IA64 --> elilo");
    18911891                mr_asprintf(&tmp2,"mkisofs -no-emul-boot -b images/mindi-bootroot.%s.img -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .", bkpinfo->mrconf->mindi_ia64_boot_size);
    18921892                res = eval_call_to_make_ISO(bkpinfo,
     
    19001900// and add ' .' at end
    19011901                mr_free(tmp2);
    1902                 log_msg(1, "Non-ia64 --> lilo");
     1902                mr_msg(1, "Non-ia64 --> lilo");
    19031903                res = eval_call_to_make_ISO(bkpinfo,
    19041904                                            "mkisofs -b images/mindi-bootroot.2880.img -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .",
     
    19091909#endif
    19101910            } else {
    1911                 log_msg(1, "make_cd_use_lilo = FALSE");
    1912                 log_msg(1, "Isolinux");
     1911                mr_msg(1, "make_cd_use_lilo = FALSE");
     1912                mr_msg(1, "Isolinux");
    19131913                res = eval_call_to_make_ISO(bkpinfo,
    19141914                                            "mkisofs -no-emul-boot -b isolinux.bin -boot-load-size 4 -boot-info-table -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .",
     
    19321932        || bkpinfo->backup_media_type == cdrw) {
    19331933        if (is_this_device_mounted(bkpinfo->media_device)) {
    1934             log_msg(2,
     1934            mr_msg(2,
    19351935                    "Warning - %s mounted. I'm unmounting it before I burn to it.",
    19361936                    bkpinfo->media_device);
     
    19421942
    19431943    if (bkpinfo->call_burn_iso != NULL) {
    1944         log_msg(2, "bkpinfo->call_burn_iso = %s", bkpinfo->call_burn_iso);
     1944        mr_msg(2, "bkpinfo->call_burn_iso = %s", bkpinfo->call_burn_iso);
    19451945        mr_asprintf(&message_to_screen, "Burning %s #%d",
    19461946                 bkpinfo->backup_media_string,
     
    19771977    chdir(old_pwd);
    19781978    if (retval) {
    1979         log_msg(1, "WARNING - make_iso_fs returned an error");
     1979        mr_msg(1, "WARNING - make_iso_fs returned an error");
    19801980    }
    19811981    mr_free(old_pwd);
     
    19921992             "dd if=%s bs=512 count=1 2> /dev/null | strings | head -n1",
    19931993             bigfile_fname);
    1994     log_msg(1, "command = '%s'", command);
     1994    mr_msg(1, "command = '%s'", command);
    19951995    tmp = call_program_and_get_last_line_of_output(command);
    1996     log_msg(1, "--> tmp = '%s'", tmp);
     1996    mr_msg(1, "--> tmp = '%s'", tmp);
    19971997    mr_free(command);
    19981998    if (strstr(tmp, "NTFS")) {
     
    20552055        size_of_all_biggiefiles_K(bkpinfo) / bkpinfo->optimal_set_size + 1;
    20562056
    2057     log_msg(1, "size of all biggiefiles = %ld",
     2057    mr_msg(1, "size of all biggiefiles = %ld",
    20582058            size_of_all_biggiefiles_K(bkpinfo));
    2059     log_msg(1, "estimated_total_noof_slices = %ld KB / %ld KB = %ld",
     2059    mr_msg(1, "estimated_total_noof_slices = %ld KB / %ld KB = %ld",
    20602060            size_of_all_biggiefiles_K(bkpinfo), bkpinfo->optimal_set_size,
    20612061            estimated_total_noof_slices);
    20622062
    20632063    if (length_of_file(biggielist_fname) < 6) {
    2064         log_msg(1, "No biggiefiles; fair enough...");
     2064        mr_msg(1, "No biggiefiles; fair enough...");
    20652065        return (0);
    20662066    }
     
    20952095            // Call ntfsclone (formerly partimagehack) if it's a /dev entry
    20962096            // (i.e. a partition to be imaged)
    2097             log_msg(2, "bigfile_fname = %s", bigfile_fname);
     2097            mr_msg(2, "bigfile_fname = %s", bigfile_fname);
    20982098            use_ntfsprog = FALSE;
    20992099            if (!strncmp(bigfile_fname, "/dev/", 5)
    21002100                && is_dev_an_NTFS_dev(bigfile_fname)) {
    21012101                use_ntfsprog = TRUE;
    2102                 log_msg(2,
     2102                mr_msg(2,
    21032103                        "Calling ntfsclone in background because %s is an NTFS partition",
    21042104                        bigfile_fname);
     
    21132113                    fatal_error("Fork failure");
    21142114                case 0:
    2115                     log_msg(2,
     2115                    mr_msg(2,
    21162116                            "CHILD - fip - calling feed_into_ntfsprog(%s, %s)",
    21172117                            bigfile_fname, sz_devfile);
     
    21202120                    break;
    21212121                default:
    2122                     log_msg(2,
     2122                    mr_msg(2,
    21232123                            "feed_into_ntfsprog() called in background --- pid=%ld",
    21242124                            (long int) (pid));
     
    21332133
    21342134            // Whether partition or biggiefile, just do your thang :-)
    2135             log_msg(2, "Bigfile #%ld is '%s' (%ld KB)",
     2135            mr_msg(2, "Bigfile #%ld is '%s' (%ld KB)",
    21362136                    biggie_file_number + 1, bigfile_fname,
    21372137                    (long) biggie_fsize >> 10);
     
    21802180    paranoid_fclose(fin);
    21812181
    2182     log_msg(1, "Finished backing up bigfiles");
    2183     log_msg(1, "estimated slices = %ld; actual slices = %ld",
     2182    mr_msg(1, "Finished backing up bigfiles");
     2183    mr_msg(1, "estimated slices = %ld; actual slices = %ld",
    21842184            estimated_total_noof_slices, g_current_progress);
    21852185    close_progress_form();
     
    22292229                 bkpinfo->tmpdir, curr_set_no, bkpinfo->zip_suffix);
    22302230
    2231         log_msg(1, "EXAT'g set %ld", curr_set_no);
     2231        mr_msg(1, "EXAT'g set %ld", curr_set_no);
    22322232        if (g_getfattr) {
    22332233            mr_asprintf(&curr_xattr_list_fname, XATTR_LIST_FNAME_RAW_SZ,
     
    22412241        }
    22422242
    2243         log_msg(1, "Archiving set %ld", curr_set_no);
     2243        mr_msg(1, "Archiving set %ld", curr_set_no);
    22442244        res = archive_this_fileset(bkpinfo, curr_filelist_fname,
    22452245                                   curr_afioball_fname, curr_set_no);
     
    23492349                                     BLK_START_AFIOBALLS);
    23502350#if __FreeBSD__ == 5
    2351         log_msg(1,
     2351        mr_msg(1,
    23522352                "Using single-threaded make_afioballs_and_images() to suit b0rken FreeBSD 5.0");
    23532353        res = make_afioballs_and_images_OLD(bkpinfo);
     
    23642364    if (res) {
    23652365        mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
    2366         log_msg(1, "make_afioballs_and_images returned an error");
     2366        mr_msg(1, "make_afioballs_and_images returned an error");
    23672367    } else {
    23682368        mvaddstr_and_log_it(g_currentY++, 74, "Done.");
     
    24132413
    24142414    mr_asprintf(&blah, "biggielist = %s", biggielist);
    2415     log_msg(2, blah);
     2415    mr_msg(2, blah);
    24162416    mr_free(blah);
    24172417
    24182418    if (!does_file_exist(biggielist)) {
    2419         log_msg(1, "BTW, the biggielist does not exist");
     2419        mr_msg(1, "BTW, the biggielist does not exist");
    24202420    }
    24212421
     
    24572457    retval += res;
    24582458    if (res) {
    2459         log_msg(1, "make_slices_and_images returned an error");
     2459        mr_msg(1, "make_slices_and_images returned an error");
    24602460        mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
    24612461    } else {
     
    25192519        mr_asprintf(&curr_file, "%s", cf);
    25202520        if (!does_file_exist(curr_file)) {
    2521             log_msg(1,
     2521            mr_msg(1,
    25222522                    "Warning - you're trying to add a non-existent file - '%s' to the CD",
    25232523                    curr_file);
    25242524        } else {
    2525             log_msg(8, "Trying to add file %s to CD", curr_file);
     2525            mr_msg(8, "Trying to add file %s to CD", curr_file);
    25262526            would_occupy += length_of_file(curr_file) / 1024;
    25272527        }
     
    25382538        retval += res;
    25392539        if (res) {
    2540             log_msg(1, "WARNING - write_iso_and_go_on returned an error");
     2540            mr_msg(1, "WARNING - write_iso_and_go_on returned an error");
    25412541        }
    25422542    }
     
    25542554        retval += res;
    25552555        if (res) {
    2556             log_msg(1, "(move_files_to_cd) '%s' failed", tmp);
     2556            mr_msg(1, "(move_files_to_cd) '%s' failed", tmp);
    25572557        } else {
    2558             log_msg(8, "Moved %s to CD OK", tmp);
     2558            mr_msg(8, "Moved %s to CD OK", tmp);
    25592559        }
    25602560        mr_free(tmp);
     
    25652565
    25662566    if (retval) {
    2567         log_msg(1,
     2567        mr_msg(1,
    25682568                "Warning - errors occurred while I was adding files to CD dir");
    25692569    }
     
    26212621        mr_asprintf(&bootdisk_dev, "/dev/fd0H1722");
    26222622    } else {
    2623         log_msg(1, "Warning - can't find a 1.72MB floppy device *sigh*");
     2623        mr_msg(1, "Warning - can't find a 1.72MB floppy device *sigh*");
    26242624        mr_asprintf(&bootdisk_dev, DEFAULT_1722MB_DISK);
    26252625    }
    26262626    mr_asprintf(&datadisk_dev, "%s", "/dev/fd0");
    26272627    if (!does_device_exist(datadisk_dev)) {
    2628         log_msg(1, "Warning - can't find a 1.44MB floppy device *sigh*");
     2628        mr_msg(1, "Warning - can't find a 1.44MB floppy device *sigh*");
    26292629        mr_free(datadisk_dev);
    26302630        mr_asprintf(&datadisk_dev, "%s", "/dev/fd0");
     
    26862686                }
    26872687                mr_asprintf(&tmp, "cat %s > %s", rootdisk_file, datadisk_dev);
    2688                 log_msg(1, "tmp = '%s'", tmp);
     2688                mr_msg(1, "tmp = '%s'", tmp);
    26892689                res +=
    26902690                    run_external_binary_with_percentage_indicator_NEW
     
    27072707    for (i = 1; i < 99; i++) {
    27082708        mr_asprintf(&tmp, "%s/mindi-data-%d.img", imagesdir, i);
    2709         log_msg(3, tmp);
     2709        mr_msg(3, tmp);
    27102710        if (!does_file_exist(tmp)) {
    2711             log_msg(3, "...not found");
     2711            mr_msg(3, "...not found");
    27122712            break;
    27132713        }
     
    28302830        mr_asprintf(&curr_file, "%s", cf);
    28312831        if (!does_file_exist(curr_file)) {
    2832             log_msg(1,
     2832            mr_msg(1,
    28332833                    "Warning - you're trying to add a non-existent file - '%s' to the tape",
    28342834                    curr_file);
     
    28582858
    28592859    if (retval) {
    2860         log_msg(1,
     2860        mr_msg(1,
    28612861                "Warning - errors occurred while I was adding file to tape");
    28622862    }
     
    28902890        } else {
    28912891            mr_asprintf(&cdrecord, " ");
    2892             log_msg(2, "Found no cdrecord nor dvdrecord in path.");
     2892            mr_msg(2, "Found no cdrecord nor dvdrecord in path.");
    28932893        }
    28942894        if (cdrecord[0]) {
     
    29442944    if (cdrom_dev != NULL) {
    29452945/* When enabled, it made CD eject-and-retract when wrong CD inserted.. Weird
    2946       log_msg(2, "paafcd: Retracting CD-ROM drive if possible" );
     2946      mr_msg(2, "paafcd: Retracting CD-ROM drive if possible" );
    29472947      retract_CD_tray_and_defeat_autorun();
    29482948*/
     
    29572957        if ((attempt_to_mount_returned_this =
    29582958             run_program_and_log_output(tmp, 1))) {
    2959             log_msg(4, "Failed to mount %s at %s", cdrom_dev, mtpt);
     2959            mr_msg(4, "Failed to mount %s at %s", cdrom_dev, mtpt);
    29602960            log_to_screen("If there's a CD/DVD in the drive, it's blank.");
    29612961            mr_asprintf(&our_serial_str, "%s", "");
     
    29842984        mr_free(szunmount);
    29852985
    2986         log_msg(2, "paafcd: cd_number = %d", cd_number);
    2987         log_msg(2, "our serial str = %s; g_serial_string = %s",
     2986        mr_msg(2, "paafcd: cd_number = %d", cd_number);
     2987        mr_msg(2, "our serial str = %s; g_serial_string = %s",
    29882988                our_serial_str, g_serial_string);
    29892989        if (cd_number > 0 && !strcmp(our_serial_str, g_serial_string)) {
    2990             log_msg(2, "This %s is part of this backup set!",
     2990            mr_msg(2, "This %s is part of this backup set!",
    29912991                    g_backup_media_string);
    29922992            ok_go_ahead_burn_it = FALSE;
     
    30053005        mr_free(our_serial_str);
    30063006    } else {
    3007         log_msg(2,
     3007        mr_msg(2,
    30083008                "paafcd: Can't find CD-ROM drive. Perhaps it has a blank %s in it?",
    30093009                g_backup_media_string);
     
    30283028        goto gotos_make_me_puke;
    30293029    } else {
    3030         log_msg(2, "paafcd: OK, going ahead and burning it.");
     3030        mr_msg(2, "paafcd: OK, going ahead and burning it.");
    30313031    }
    30323032    mr_free(cdrom_dev);
    30333033
    3034     log_msg(2,
     3034    mr_msg(2,
    30353035            "paafcd: OK, I assume I have a blank/reusable %s in the drive...",
    30363036            g_backup_media_string);
     
    31613161        file_to_openin = ntfsprog_fifo;
    31623162        mr_asprintf(&checksum_line, "IGNORE");
    3163         log_msg(2,
     3163        mr_msg(2,
    31643164                "Not calculating checksum for %s: it would take too long",
    31653165                biggie_filename);
     
    32213221    paranoid_fclose(fout);
    32223222    length = totallength / optimal_set_size / 1024;
    3223     log_msg(1, "Opening in %s; slicing it and writing to CD/tape",
     3223    mr_msg(1, "Opening in %s; slicing it and writing to CD/tape",
    32243224            file_to_openin);
    32253225    if (!(fin = fopen(file_to_openin, "r"))) {
     
    32793279        {
    32803280            if (!does_file_exist(curr_slice_fname_uncompressed)) {
    3281                 log_msg(2,
     3281                mr_msg(2,
    32823282                        "Warning - '%s' doesn't exist. How can I compress slice?",
    32833283                        curr_slice_fname_uncompressed);
     
    32873287                         bkpinfo->compression_level,
    32883288                         curr_slice_fname_uncompressed);
    3289                 log_msg(2, command);
     3289                mr_msg(2, command);
    32903290                if ((res = system(command))) {
    32913291                    log_OS_error(command);
     
    33033303            retval += res;
    33043304            if (res) {
    3305                 log_msg(2, "Failed to compress the slice");
     3305                mr_msg(2, "Failed to compress the slice");
    33063306            }
    33073307            if (bkpinfo->use_lzo
     
    33233323                newtRefresh();
    33243324            } else {
    3325                 log_msg(2, tmp);
     3325                mr_msg(2, tmp);
    33263326            }
    33273327#else
    3328             log_msg(2, tmp);
     3328            mr_msg(2, tmp);
    33293329#endif
    33303330            mr_free(tmp);
     
    33733373                 biggie_file_number + 1);
    33743374    }
    3375     log_msg(1, tmp);
     3375    mr_msg(1, tmp);
    33763376    mr_free(tmp);
    33773377    return (retval);
     
    34213421    mr_free(tmp);
    34223422
    3423     log_msg(1, "Wiped %s's archives", dir);
     3423    mr_msg(1, "Wiped %s's archives", dir);
    34243424    mr_asprintf(&tmp, "ls -l %s", dir);
    34253425    run_program_and_log_output(tmp, FALSE);
     
    34573457
    34583458    mr_asprintf(&tmp, "Writing the final ISO");
    3459     log_msg(2, tmp);
     3459    mr_msg(2, tmp);
    34603460    /* BERLIOS: center_string is now broken
    34613461       center_string(tmp, 80);
     
    34733473    }
    34743474#endif
    3475     log_msg(2, "Returning from writing final ISO (res=%d)", res);
     3475    mr_msg(2, "Returning from writing final ISO (res=%d)", res);
    34763476    return (res);
    34773477}
     
    35253525        using_nfs = FALSE;
    35263526    }
    3527     log_msg(1, "OK, time to make %s #%d",
     3527    mr_msg(1, "OK, time to make %s #%d",
    35283528            bkpinfo->backup_media_string,
    35293529            g_current_media_number);
     
    35413541             bkpinfo->scratchdir);
    35423542    if (run_program_and_log_output(tmp, FALSE)) {
    3543         log_msg(2, "Warning - unable to copy autorun to scratchdir");
     3543        mr_msg(2, "Warning - unable to copy autorun to scratchdir");
    35443544    }
    35453545    mr_free(tmp);
     
    35503550    if (last_cd) {
    35513551        unlink(lastcd_fname);
    3552         log_msg(2,
     3552        mr_msg(2,
    35533553                "OK, you're telling me this is the last CD. Fair enough.");
    35543554    } else {
     
    35793579            if ((tmp = find_cdrom_device(FALSE)) == NULL)   // make sure find_cdrom_device() finds, records CD-R's loc
    35803580            {
    3581                 log_msg(3, "*Sigh* Mike, I hate your computer.");
     3581                mr_msg(3, "*Sigh* Mike, I hate your computer.");
    35823582                bkpinfo->manual_cd_tray = TRUE;
    35833583            }                   // if it can't be found then force pausing
    35843584            else {
    3585                 log_msg(3, "Great. Found Mike's CD-ROM drive.");
     3585                mr_msg(3, "Great. Found Mike's CD-ROM drive.");
    35863586                mr_free(tmp);
    35873587            }
     
    36113611                }
    36123612            } else {
    3613                 log_msg(2, "Retrying, at user's request...");
     3613                mr_msg(2, "Retrying, at user's request...");
    36143614                res = 0;
    36153615            }
     
    36343634             bkpinfo->scratchdir, bkpinfo->scratchdir);
    36353635    if (system(tmp)) {
    3636         log_msg(2,
     3636        mr_msg(2,
    36373637                "Error occurred when I tried to delete the redundant IMGs and GZs");
    36383638    }
     
    36403640
    36413641    if (last_cd) {
    3642         log_msg(2, "This was your last CD.");
    3643     } else {
    3644         log_msg(2, "Continuing to backup your data...");
     3642        mr_msg(2, "This was your last CD.");
     3643    } else {
     3644        mr_msg(2, "Continuing to backup your data...");
    36453645    }
    36463646
     
    36823682        //bkpinfo->backup_media_type == cdrw || bkpinfo->backup_media_type == cdr))
    36833683    {
    3684         log_msg(2,
     3684        mr_msg(2,
    36853685                "Not verifying again. Per-CD/ISO verification already carried out.");
    36863686        paranoid_system
     
    36943694        for (cdno = 1; cdno < 99 && bkpinfo->verify_data; cdno++) {
    36953695            if (cdno != g_current_media_number) {
    3696                 log_msg(2,
     3696                mr_msg(2,
    36973697                        "Warning - had to change g_current_media_number from %d to %d",
    36983698                        g_current_media_number, cdno);
     
    37873787    }
    37883788    mr_asprintf(&tmp, "maxblocks = %d; p=%s", maxblocks, p);
    3789     log_msg(2, tmp);
     3789    mr_msg(2, tmp);
    37903790    mr_free(tmp);
    37913791
     
    38033803        if (fread(blk, 1, 1024, fin) != 1024) {
    38043804            if (feof(fin)) {
    3805                 log_msg(1,
     3805                mr_msg(1,
    38063806                        "img read err - img ended prematurely - non-fatal error");
    38073807                sleep(3);
  • trunk/mondo/src/common/libmondo-devices.c

    r1079 r1086  
    133133    }
    134134
    135     log_msg(4, "(mount_CDROM_here --- device=%s, mountpoint=%s", device,
     135    mr_msg(4, "(mount_CDROM_here --- device=%s, mountpoint=%s", device,
    136136            mountpoint);
    137137    /*@ end vars *************************************************** */
     
    145145#endif
    146146
    147     log_msg(4, command);
     147    mr_msg(4, command);
    148148    if (strncmp(device, "/dev/", 5) == 0) {
    149149        retract_CD_tray_and_defeat_autorun();
    150150    }
    151151    retval = system(command);
    152     log_msg(1, "system(%s) returned %d", command, retval);
     152    mr_msg(1, "system(%s) returned %d", command, retval);
    153153    mr_free(command);
    154154
     
    174174    mr_asprintf(&tmp, where_is_root_mounted());
    175175    mr_asprintf(&comment, "root is mounted at %s\n", tmp);
    176     log_msg(0, comment);
     176    mr_msg(0, comment);
    177177    mr_free(comment);
    178178
    179     log_msg(0,
     179    mr_msg(0,
    180180            "No, Schlomo, that doesn't mean %s is the root partition. It's just a debugging message. Relax. It's part of am_I_in_disaster_recovery_mode().",
    181181            tmp);
     
    208208        is_this_a_ramdisk = TRUE;
    209209    }
    210     log_msg(1, "Is this a ramdisk? result = %d", is_this_a_ramdisk);
     210    mr_msg(1, "Is this a ramdisk? result = %d", is_this_a_ramdisk);
    211211    return (is_this_a_ramdisk);
    212212}
     
    291291#endif
    292292
    293     log_msg(3, "Ejecting %s", dev);
     293    mr_msg(3, "Ejecting %s", dev);
    294294    res2 = run_program_and_log_output(command, 1);
    295295    mr_free(command);
     
    543543    }
    544544    if (res) {
    545         log_msg(1, _("mount failed"));
    546     } else {
    547         log_msg(1, _("mount succeeded with %s"), dev);
     545        mr_msg(1, _("mount failed"));
     546    } else {
     547        mr_msg(1, _("mount succeeded with %s"), dev);
    548548    }
    549549    mr_free(dev);
     
    568568    if (g_cdrw_drive_is_here != NULL) {
    569569        mr_asprintf(&cdrw_device, g_cdrw_drive_is_here);
    570         log_msg(3, "Been there, done that. Returning %s", cdrw_device);
     570        mr_msg(3, "Been there, done that. Returning %s", cdrw_device);
    571571        return(cdrw_device);
    572572    }
    573573    if (g_backup_media_type == dvd) {
    574         log_msg(1,
     574        mr_msg(1,
    575575                "This is dumb. You're calling find_cdrw_device() but you're backing up to DVD. WTF?");
    576576        return(NULL);
     
    652652    if ((g_cdrom_drive_is_here != NULL) && !isdigit(g_cdrom_drive_is_here[0])) {
    653653        mr_asprintf(&output, g_cdrom_drive_is_here);
    654         log_msg(3, "Been there, done that. Returning %s", output);
     654        mr_msg(3, "Been there, done that. Returning %s", output);
    655655        return(output);
    656656    }
    657657    if ((the_last_place_i_found_it != NULL) && !try_to_mount) {
    658658        mr_asprintf(&output, the_last_place_i_found_it);
    659         log_msg(3,
     659        mr_msg(3,
    660660                "find_cdrom_device() --- returning last found location - '%s'",
    661661                output);
     
    674674    if (!tmp) {
    675675        mr_asprintf(&output, "/dev/cdrom");
    676         log_msg(4, "Can't find cdrecord; assuming %s", output);
     676        mr_msg(4, "Can't find cdrecord; assuming %s", output);
    677677        if (!does_device_exist(output)) {
    678             log_msg(4, "That didn't work. Sorry.");
     678            mr_msg(4, "That didn't work. Sorry.");
    679679            mr_free(cdr_exe);
    680680            mr_free(output);
     
    690690    fin = popen(command, "r");
    691691    if (!fin) {
    692         log_msg(4, "command=%s", command);
     692        mr_msg(4, "command=%s", command);
    693693        log_OS_error("Cannot popen command");
    694694        mr_free(cdr_exe);
     
    730730#ifndef __FreeBSD__
    731731    if (strlen(phrase_two) == 0) {
    732         log_msg(4, "Not running phase two. String is empty.");
     732        mr_msg(4, "Not running phase two. String is empty.");
    733733    } else {
    734734        mr_asprintf(&command, "dmesg | grep \"%s\" 2> /dev/null", phrase_two);
    735735        fin = popen(command, "r");
    736736        if (!fin) {
    737             log_msg(4, "Cannot run 2nd command - non-fatal, fortunately");
     737            mr_msg(4, "Cannot run 2nd command - non-fatal, fortunately");
    738738        } else {
    739739            for (mr_getline(&tmp, &n, fin); !feof(fin);
    740740                 mr_getline(&tmp, &n, fin)) {
    741                 log_msg(5, "--> '%s'", tmp);
     741                mr_msg(5, "--> '%s'", tmp);
    742742                if (tmp[0] != ' ' && tmp[1] != ' ') {
    743743                    p = strchr(tmp, ':');
     
    747747                            mr_free(dvd_last_resort);
    748748                            mr_asprintf(&dvd_last_resort, "/dev/%s", tmp);
    749                             log_msg(4,
     749                            mr_msg(4,
    750750                                    "Ignoring '%s' because it's a DVD drive",
    751751                                    tmp);
     
    767767#ifdef __FreeBSD__
    768768    if (!found_it) {
    769         log_msg(4, "OK, approach 2");
     769        mr_msg(4, "OK, approach 2");
    770770        if (!(found_it = set_dev_to_this_if_rx_OK(output, "/dev/cdrom"))) {
    771771            if (!
     
    804804    if (dvd_last_resort != NULL) {
    805805        if (!found_it && strlen(dvd_last_resort) > 0) {
    806             log_msg(4, "Well, I'll use the DVD - %s - as a last resort",
     806            mr_msg(4, "Well, I'll use the DVD - %s - as a last resort",
    807807                    dvd_last_resort);
    808808            mr_free(output);
     
    817817                strrchr(output, '/') + 1);
    818818        if (system(tmp) == 0) {
    819             log_msg(4,
     819            mr_msg(4,
    820820                    "%s is not right. It's being SCSI-emulated. Continuing.",
    821821                    output);
     
    827827
    828828    if (found_it) {
    829         log_msg(4, "(find_cdrom_device) --> '%s'", output);
     829        mr_msg(4, "(find_cdrom_device) --> '%s'", output);
    830830        if (!does_device_exist(output)) {
    831             log_msg(4, "OK, I was wrong, I haven't found it... yet.");
     831            mr_msg(4, "OK, I was wrong, I haven't found it... yet.");
    832832            found_it = FALSE;
    833833            mr_free(output);
     
    836836
    837837    if (!found_it) {
    838         log_msg(4, "OK, approach 2");
     838        mr_msg(4, "OK, approach 2");
    839839        if (!(found_it = set_dev_to_this_if_rx_OK(output, "/dev/scd0"))) {
    840840            if (!(found_it = set_dev_to_this_if_rx_OK(output, "/dev/sr0"))) {
     
    882882    if (found_it && try_to_mount) {
    883883        if (! mount_CDROM_here(output, mountpoint)) {
    884             log_msg(4, "[Cardigans] I've changed my mind");
     884            mr_msg(4, "[Cardigans] I've changed my mind");
    885885            found_it = FALSE;
    886886            mr_free(output);
     
    888888            mr_asprintf(&tmp, "%s/archives", mountpoint);
    889889            if (!does_file_exist(tmp)) {
    890                 log_msg(4, "[Cardigans] I'll take it back");
     890                mr_msg(4, "[Cardigans] I'll take it back");
    891891                found_it = FALSE;
    892892                mr_free(output);
     
    895895                paranoid_system(command);
    896896                mr_free(command);
    897                 log_msg(4, "I'm confident the Mondo CD is in %s", output);
     897                mr_msg(4, "I'm confident the Mondo CD is in %s", output);
    898898            }
    899899            mr_free(tmp);
     
    905905    if (found_it) {
    906906        if (!does_file_exist(output)) {
    907             log_msg(3, "I still haven't found it.");
     907            mr_msg(3, "I still haven't found it.");
    908908            mr_free(output);
    909909            return(NULL);
    910910        }
    911         log_msg(3, "(find_cdrom_device) --> '%s'", output);
     911        mr_msg(3, "(find_cdrom_device) --> '%s'", output);
    912912        mr_asprintf(&the_last_place_i_found_it, output);
    913913        mr_free(g_cdrom_drive_is_here);
     
    921921    mr_free(cdr_exe);
    922922
    923     log_msg(1, "command=%s", command);
     923    mr_msg(1, "command=%s", command);
    924924    mr_asprintf(&tmp, call_program_and_get_last_line_of_output(command));
    925925    mr_free(command);
     
    927927    if (tmp[0]) {
    928928        output = tmp;
    929         log_msg(4, "Finally found it at %s", output);
     929        mr_msg(4, "Finally found it at %s", output);
    930930    } else {
    931931        mr_free(tmp);
    932932        mr_free(output);
    933         log_msg(4, "Still couldn't find it.");
     933        mr_msg(4, "Still couldn't find it.");
    934934    }
    935935    return(output);
     
    945945    if (g_dvd_drive_is_here != NULL) {
    946946        mr_asprintf(&output, g_dvd_drive_is_here);
    947         log_msg(3, "Been there, done that. Returning %s", output);
     947        mr_msg(3, "Been there, done that. Returning %s", output);
    948948        return (output);
    949949    }
     
    952952            ("dvdrecord -scanbus 2> /dev/null | grep \") '\" | grep -n \"\" | grep DVD | cut -d':' -f1")
    953953        );
    954     log_msg(5, "tmp = '%s'", tmp);
     954    mr_msg(5, "tmp = '%s'", tmp);
    955955    if (!tmp[0]) {
    956956        mr_free(tmp);
     
    969969        mr_free(g_dvd_drive_is_here);
    970970        mr_asprintf(&g_dvd_drive_is_here, output);
    971         log_msg(2, "I think DVD is at %s", output);
    972     } else {
    973         log_msg(2, "I cannot find DVD");
     971        mr_msg(2, "I think DVD is at %s", output);
     972    } else {
     973        mr_msg(2, "I cannot find DVD");
    974974    }
    975975
     
    10321032
    10331033    if (outvalB <= 0) {
    1034         log_msg(1, "Error getting size of %s: %s", drive, strerror(errno));
     1034        mr_msg(1, "Error getting size of %s: %s", drive, strerror(errno));
    10351035#if linux
    10361036    fileid = open(drive, O_RDONLY);
     
    10411041                cylindersize = hdgeo.heads * hdgeo.sectors / 2;
    10421042                outvalA = cylindersize * cylinders / 1024;
    1043                 log_msg(2, "Got Harddisk geometry, C:%d, H:%d, S:%d",
     1043                mr_msg(2, "Got Harddisk geometry, C:%d, H:%d, S:%d",
    10441044                        hdgeo.cylinders, hdgeo.heads, hdgeo.sectors);
    10451045                gotgeo = 1;
    10461046            } else {
    1047                 log_msg(1, "Harddisk geometry wrong");
     1047                mr_msg(1, "Harddisk geometry wrong");
    10481048            }
    10491049        } else {
    1050             log_msg(1,
     1050            mr_msg(1,
    10511051                    "Error in ioctl() getting new hard disk geometry (%s), resizing in unsafe mode",
    10521052                    strerror(errno));
     
    10541054        close(fileid);
    10551055    } else {
    1056         log_msg(1, "Failed to open %s for reading: %s", drive,
     1056        mr_msg(1, "Failed to open %s for reading: %s", drive,
    10571057                strerror(errno));
    10581058    }
    10591059    if (!gotgeo) {
    1060         log_msg(1, "Failed to get harddisk geometry, using old mode");
     1060        mr_msg(1, "Failed to get harddisk geometry, using old mode");
    10611061    }
    10621062#endif
     
    10671067    outvalC = (outvalA > outvalB) ? outvalA : outvalB;
    10681068
    1069 //  log_msg (5, "drive = %s, error = %s", drive, strerror (errno));
     1069//  mr_msg (5, "drive = %s, error = %s", drive, strerror (errno));
    10701070//  fatal_error ("GPSOD: Unable to get size of drive");
    1071     log_msg(1, "%s --> %ld or %ld --> %ld", drive, outvalA, outvalB,
     1071    mr_msg(1, "%s --> %ld or %ld --> %ld", drive, outvalA, outvalB,
    10721072            outvalC);
    10731073
     
    11641164//  assert_string_is_neither_NULL_nor_zerolength(device_raw);
    11651165    if (device_raw[0] != '/' && !strstr(device_raw, ":/")) {
    1166         log_msg(1, "%s needs to have a '/' prefixed - I'll do it",
     1166        mr_msg(1, "%s needs to have a '/' prefixed - I'll do it",
    11671167                device_raw);
    11681168        mr_asprintf(&tmp, "/%s", device_raw);
     
    11701170        mr_asprintf(&tmp, device_raw);
    11711171    }
    1172     log_msg(1, "Is %s mounted?", tmp);
     1172    mr_msg(1, "Is %s mounted?", tmp);
    11731173    if (!strcmp(tmp, "/proc") || !strcmp(tmp, "proc")) {
    1174         log_msg(1,
     1174        mr_msg(1,
    11751175                "I don't know how the heck /proc made it into the mountlist. I'll ignore it.");
    11761176        return (FALSE);
     
    12011201    mr_free(device_with_space);
    12021202
    1203     log_msg(4, "tmp (command) = '%s'", tmp);
     1203    mr_msg(4, "tmp (command) = '%s'", tmp);
    12041204    if (!system(tmp)) {
    12051205        mr_free(tmp);
     
    13211321    assert(cd_number_i_want > 0);
    13221322
    1323 //  log_msg(3, "Insisting on CD number %d", cd_number_i_want);
     1323//  mr_msg(3, "Insisting on CD number %d", cd_number_i_want);
    13241324
    13251325    if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
    1326         log_msg(3,
     1326        mr_msg(3,
    13271327                "No need to insist_on_this_cd_number when the backup type isn't CD-R(W) or NFS or ISO");
    13281328        return;
     
    13351335    if (g_ISO_restore_mode || bkpinfo->backup_media_type == iso
    13361336        || bkpinfo->backup_media_type == nfs) {
    1337         log_msg(3, "Remounting CD");
     1337        mr_msg(3, "Remounting CD");
    13381338        g_ISO_restore_mode = TRUE;
    13391339// FIXME --- I'm tempted to do something about this...
     
    13521352                    cd_number_i_want);
    13531353            if (does_file_exist(tmp)) {
    1354                 log_msg(1,
     1354                mr_msg(1,
    13551355                        "FIXME - hacking bkpinfo->isodir from '%s' to /tmp/isodir",
    13561356                        bkpinfo->isodir);
     
    13581358            }
    13591359        }
    1360         log_msg(3, "Mounting %s at %s", tmp, MNT_CDROM);
     1360        mr_msg(3, "Mounting %s at %s", tmp, MNT_CDROM);
    13611361        if (! mount_CDROM_here(tmp, MNT_CDROM)) {
    13621362            fatal_error("Mommy!");
     
    13651365    }
    13661366    if ((res = what_number_cd_is_this(bkpinfo)) != cd_number_i_want) {
    1367         log_msg(3, "Currently, we hold %d but we want %d", res,
     1367        mr_msg(3, "Currently, we hold %d but we want %d", res,
    13681368                cd_number_i_want);
    13691369        mr_asprintf(&tmp, "Insisting on %s #%d",
     
    13731373                bkpinfo->backup_media_string,
    13741374                cd_number_i_want);
    1375         log_msg(3, tmp);
     1375        mr_msg(3, tmp);
    13761376        mr_free(tmp);
    13771377
     
    14031403        mr_free(request);
    14041404
    1405         log_msg(1, "Thankyou. Proceeding...");
     1405        mr_msg(1, "Thankyou. Proceeding...");
    14061406        g_current_media_number = cd_number_i_want;
    14071407    }
     
    14521452    }
    14531453    bkpinfo->backup_media_string = bkptype_to_string(bkpinfo->backup_media_type);
    1454     log_msg(3, "media type = %s",bkpinfo->backup_media_string);
     1454    mr_msg(3, "media type = %s",bkpinfo->backup_media_string);
    14551455
    14561456    if (archiving_to_media) {
     
    14901490                mr_asprintf(&tmp, "1");
    14911491                mr_asprintf(&sz_size, "%d", DEFAULT_DVD_DISK_SIZE); // 4.7 salesman's GB = 4.482 real GB = 4582 MB
    1492                 log_msg(1, "Setting to DVD defaults");
     1492                mr_msg(1, "Setting to DVD defaults");
    14931493            } else if (bkpinfo->backup_media_type == usb) {
    14941494                strcpy(bkpinfo->media_device, VANILLA_USB_DEVICE);
     
    14981498                mr_asprintf(&tmp, "4");
    14991499                mr_asprintf(&sz_size, "650");
    1500                 log_msg(1, "Setting to CD defaults");
     1500                mr_msg(1, "Setting to CD defaults");
    15011501            }
    15021502            if ((bkpinfo->backup_media_type != dvd) && (bkpinfo->backup_media_type != usb)) {
     
    15341534        if (bkpinfo->disaster_recovery) {
    15351535            mr_allocstr(bkpinfo->media_device, "/dev/cdrom");
    1536             log_msg(2, "CD-ROM device assumed to be at %s",
     1536            mr_msg(2, "CD-ROM device assumed to be at %s",
    15371537                    bkpinfo->media_device);
    15381538        } else if (bkpinfo->restore_data
     
    15411541                mr_asprintf(&bkpinfo->media_device, "/dev/cdrom");
    15421542            }                   // just for the heck of it :)
    1543             log_msg(1, "bkpinfo->media_device = %s",
     1543            mr_msg(1, "bkpinfo->media_device = %s",
    15441544                    bkpinfo->media_device);
    15451545            tmp = find_cdrom_device(FALSE);
     
    15471547                || (tmp != NULL)) {
    15481548                mr_allocstr(bkpinfo->media_device, tmp);
    1549                 log_msg(1, "bkpinfo->media_device = %s",
     1549                mr_msg(1, "bkpinfo->media_device = %s",
    15501550                        bkpinfo->media_device);
    15511551                mr_asprintf(&comment,
     
    15611561            mr_free(tmp);
    15621562
    1563             log_msg(2, "%s device found at %s",
     1563            mr_msg(2, "%s device found at %s",
    15641564                    bkpinfo->backup_media_string,
    15651565                    bkpinfo->media_device);
     
    16071607        mr_free(bkpinfo->media_device);
    16081608        if (find_tape_device_and_size(bkpinfo->media_device, sz_size)) {
    1609             log_msg(3, _("Ok, using vanilla scsi tape."));
     1609            mr_msg(3, _("Ok, using vanilla scsi tape."));
    16101610            mr_allocstr(bkpinfo->media_device,VANILLA_SCSI_TAPE"0" );
    16111611            if ((fin = fopen(bkpinfo->media_device, "r"))) {
     
    16471647        }
    16481648        mr_free(tmp);
    1649         log_msg(4, "sz_size = %s", sz_size);
     1649        mr_msg(4, "sz_size = %s", sz_size);
    16501650        mr_free(sz_size);
    16511651        bkpinfo->media_size[0] = 0;
    1652         log_msg(4, "media_size[0] = %ld", bkpinfo->media_size[0]);
     1652        mr_msg(4, "media_size[0] = %ld", bkpinfo->media_size[0]);
    16531653        if (bkpinfo->media_size[0] <= 0) {
    16541654            bkpinfo->media_size[0] = 0;
     
    17811781            finish(1);
    17821782        }
    1783         log_msg(3, "prefix set to %s", bkpinfo->prefix);
     1783        mr_msg(3, "prefix set to %s", bkpinfo->prefix);
    17841784
    17851785        for (i = 0; i <= MAX_NOOF_MEDIA; i++) {
    17861786            bkpinfo->media_size[i] = 650;
    17871787        }
    1788         log_msg(3, "Just set nfs_remote_dir to %s",
     1788        mr_msg(3, "Just set nfs_remote_dir to %s",
    17891789                bkpinfo->nfs_remote_dir);
    1790         log_msg(3, "isodir is still %s", bkpinfo->isodir);
     1790        mr_msg(3, "isodir is still %s", bkpinfo->isodir);
    17911791        break;
    17921792
     
    18281828            finish(1);
    18291829        }
    1830         log_msg(3, "prefix set to %s", bkpinfo->prefix);
     1830        mr_msg(3, "prefix set to %s", bkpinfo->prefix);
    18311831        break;
    18321832    default:
     
    19741974#else
    19751975    if (bkpinfo->backup_media_type == nfs) {
    1976         log_msg(3, "I think the NFS mount is mounted at %s",
     1976        mr_msg(3, "I think the NFS mount is mounted at %s",
    19771977                bkpinfo->isodir);
    19781978    }
     
    19971997            fatal_error("Media size is less than zero.");
    19981998        } else {
    1999             log_msg(2, "Warning - media size is less than zero.");
     1999            mr_msg(2, "Warning - media size is less than zero.");
    20002000            bkpinfo->media_size[0] = 0;
    20012001        }
     
    20922092        return (FALSE);
    20932093    }
    2094     log_msg(10, "Injecting %s", dev);
     2094    mr_msg(10, "Injecting %s", dev);
    20952095    inject_device(dev);
    20962096    if (!does_file_exist(dev)) {
    2097         log_msg(10, "%s doesn't exist. Returning FALSE.", dev);
     2097        mr_msg(10, "%s doesn't exist. Returning FALSE.", dev);
    20982098        return (FALSE);
    20992099    }
     
    21032103        && !run_program_and_log_output(command, FALSE)) {
    21042104        mr_asprintf(&output, dev);
    2105         log_msg(4, "Found it - %s", dev);
     2105        mr_msg(4, "Found it - %s", dev);
    21062106        mr_free(command);
    21072107        return (TRUE);
    21082108    } else {
    2109         log_msg(4, "It's not %s", dev);
     2109        mr_msg(4, "It's not %s", dev);
    21102110        mr_free(command);
    21112111        return (FALSE);
     
    23652365        lstat(curr_fname, &statbuf);
    23662366        while (S_ISLNK(statbuf.st_mode)) {
    2367             log_msg(1, "curr_fname = %s", curr_fname);
     2367            mr_msg(1, "curr_fname = %s", curr_fname);
    23682368            mr_asprintf(&command, "file %s", curr_fname);
    23692369            tmp = call_program_and_get_last_line_of_output(command);
     
    23762376            for (p = scratch; *p != '\0' && *p != '\''; p++);
    23772377            *p = '\0';
    2378             log_msg(0, "curr_fname %s --> '%s' --> %s", curr_fname, tmp, scratch);
     2378            mr_msg(0, "curr_fname %s --> '%s' --> %s", curr_fname, tmp, scratch);
    23792379            mr_free(tmp);
    23802380
     
    24192419    char *fdisk = NULL;
    24202420
    2421     log_msg(0, "Looking for partition table format type");
     2421    mr_msg(0, "Looking for partition table format type");
    24222422    mr_asprintf(&fdisk, "/sbin/parted2fdisk");
    2423     log_msg(1, "Using %s", fdisk);
     2423    mr_msg(1, "Using %s", fdisk);
    24242424    mr_asprintf(&command, "%s -l %s | grep 'EFI GPT'", fdisk, drive);
    24252425    mr_free(fdisk);
     
    24342434    }
    24352435    mr_free(tmp);
    2436     log_msg(0, "Found %s partition table format type", output);
     2436    mr_msg(0, "Found %s partition table format type", output);
    24372437    return (output);
    24382438}
  • trunk/mondo/src/common/libmondo-fifo.c

    r1079 r1086  
    120120                 internal_tape_block_size, keych, device);
    121121    }
    122     log_msg(2, "Calling buffer --- command = '%s'", g_sz_call_to_buffer);
     122    mr_msg(2, "Calling buffer --- command = '%s'", g_sz_call_to_buffer);
    123123    fres = popen(g_sz_call_to_buffer, sz_dir);
    124124    mr_free(sz_dir);
    125125    if (fres) {
    126         log_msg(2, "Successfully opened ('%c') tape device %s", direction,
     126        mr_msg(2, "Successfully opened ('%c') tape device %s", direction,
    127127                device);
    128128    } else {
    129         log_msg(2, "Failed to open ('%c') tape device %s", direction,
     129        mr_msg(2, "Failed to open ('%c') tape device %s", direction,
    130130                device);
    131131    }
     
    133133    mr_asprintf(&tmp, "ps %s | grep \"%s\"", ps_options, g_sz_call_to_buffer);
    134134    if (run_program_and_log_output(tmp, 2)) {
    135         log_msg(2, "Warning - I think I failed to open tape, actually.");
     135        mr_msg(2, "Warning - I think I failed to open tape, actually.");
    136136    }
    137137    mr_free(tmp);
     
    168168            "ps %s | grep -F \"%s\" | grep -Fv grep | awk '{print $2;}' | grep -v PID | head -1", ps_options, g_sz_call_to_buffer);
    169169    mr_free(g_sz_call_to_buffer);
    170     log_msg(2, "kill_buffer() --- command = %s", command);
     170    mr_msg(2, "kill_buffer() --- command = %s", command);
    171171
    172172    tmp = call_program_and_get_last_line_of_output(command);
     
    174174
    175175    mr_asprintf(&command, "kill %s", tmp);
    176     log_msg(2, "kill_buffer() --- command = %s", command);
     176    mr_msg(2, "kill_buffer() --- command = %s", command);
    177177
    178178    if (strlen(tmp) > 0) {
  • trunk/mondo/src/common/libmondo-filelist.c

    r1083 r1086  
    150150    int retval = 0;
    151151
    152     log_msg(1, "Sorting file %s", orig_fname);
     152    mr_msg(1, "Sorting file %s", orig_fname);
    153153    mr_asprintf(&tmp_fname, "/tmp/sort.%d.%d.%d", (int) (random() % 32768),
    154154             (int) (random() % 32768), (int) (random() % 32768));
     
    164164
    165165    if (retval) {
    166         log_msg(2, "Failed to sort %s - oh dear", orig_fname);
     166        mr_msg(2, "Failed to sort %s - oh dear", orig_fname);
    167167    } else {
    168         log_msg(2, "Sorted %s --> %s OK. Copying it back to %s now",
     168        mr_msg(2, "Sorted %s --> %s OK. Copying it back to %s now",
    169169                orig_fname, tmp_fname, orig_fname);
    170170        mr_asprintf(&command, "mv -f %s %s", tmp_fname, orig_fname);
     
    173173
    174174        if (retval) {
    175             log_msg(2, "Failed to copy %s back to %s - oh dear", tmp_fname,
     175            mr_msg(2, "Failed to copy %s back to %s - oh dear", tmp_fname,
    176176                    orig_fname);
    177177        } else {
    178             log_msg(2, "%s was sorted OK.", orig_fname);
     178            mr_msg(2, "%s was sorted OK.", orig_fname);
    179179        }
    180180    }
    181181    mr_free(tmp_fname);
    182     log_msg(1, "Finished sorting file %s", orig_fname);
     182    mr_msg(1, "Finished sorting file %s", orig_fname);
    183183    return (retval);
    184184}
     
    325325        mr_asprintf(&tmp, "Filelist divided into %ld sets", curr_set_no + 1);
    326326    }
    327     log_msg(1, tmp);
     327    mr_msg(1, tmp);
    328328    mr_free(tmp);
    329329    close_evalcall_form();
     
    403403    pattr = popen(syscall, "r");
    404404    if (!pattr) {
    405         log_msg(1, "Failed to open fattr() %s", syscall);
     405        mr_msg(1, "Failed to open fattr() %s", syscall);
    406406        return (1);
    407407    }
    408408    if (feof(pattr)) {
    409         log_msg(1, "Failed to call fattr() %s", syscall);
     409        mr_msg(1, "Failed to call fattr() %s", syscall);
    410410        paranoid_pclose(pattr);
    411411        return (2);
     
    433433
    434434    if (!(fin = fopen(filelist, "r"))) {
    435         log_msg(1, "Cannot openin filelist %s", filelist);
     435        mr_msg(1, "Cannot openin filelist %s", filelist);
    436436        return (1);
    437437    }
    438438    mr_asprintf(&pout_command, "gzip -c1 > %s", auxlist_fname);
    439439    if (!(pout = popen(pout_command, "w"))) {
    440         log_msg(1, "Cannot openout auxlist_fname %s", auxlist_fname);
     440        mr_msg(1, "Cannot openout auxlist_fname %s", auxlist_fname);
    441441        fclose(fin);
    442442        mr_free(pout_command);
     
    451451            file_to_analyze[i - 1] = '\0';
    452452        }
    453         log_msg(8, "Analyzing %s", file_to_analyze);
     453        mr_msg(8, "Analyzing %s", file_to_analyze);
    454454        /* BERLIOS : to be checked */
    455455        mr_asprintf(&strtmp, syscall_sprintf, mr_stresc(file_to_analyze, "`$\\\"", '\\'));
     
    520520    FILE *pin, *pout, *faclin;
    521521
    522     log_msg(1, "set_EXAT_list(%s, %s, %s)", orig_msklist,
     522    mr_msg(1, "set_EXAT_list(%s, %s, %s)", orig_msklist,
    523523            original_exat_fname, executable);
    524524    if (!orig_msklist || !orig_msklist[0]
    525525        || !does_file_exist(orig_msklist)) {
    526         log_msg(1,
     526        mr_msg(1,
    527527                "No masklist provided. I shall therefore set ALL attributes.");
    528528        mr_asprintf(&command, "gzip -dc %s | %s --restore - 2>> %s",
    529529                 original_exat_fname, executable, MONDO_LOGFILE);
    530         log_msg(1, "command = %s", command);
     530        mr_msg(1, "command = %s", command);
    531531        retval = system(command);
    532532        mr_free(command);
    533         log_msg(1, "Returning w/ retval=%d", retval);
     533        mr_msg(1, "Returning w/ retval=%d", retval);
    534534        return (retval);
    535535    }
    536536    if (length_of_file(original_exat_fname) <= 0) {
    537         log_msg(1,
     537        mr_msg(1,
    538538                "original_exat_fname %s is empty or missing, so no need to set EXAT list",
    539539                original_exat_fname);
     
    551551             MONDO_LOGFILE);
    552552
    553     log_msg(1, "syscall_pin = %s", syscall_pin);
    554     log_msg(1, "syscall_pout = %s", syscall_pout);
     553    mr_msg(1, "syscall_pin = %s", syscall_pin);
     554    mr_msg(1, "syscall_pout = %s", syscall_pout);
    555555    pout = popen(syscall_pout, "w");
    556556    if (!pout) {
     
    604604
    605605        i = strcmp(p, q);
    606         log_msg(my_depth, "'%s' v '%s' --> %d\n", p, q, i);
     606        mr_msg(my_depth, "'%s' v '%s' --> %d\n", p, q, i);
    607607
    608608//      printf("%s v %s --> %d\n", p, q, i);
    609609
    610610        if (i < 0) {            // read another subset file in.
    611             log_msg(my_depth, "Reading next subset line in\n\n");
     611            mr_msg(my_depth, "Reading next subset line in\n\n");
    612612            mr_getline(&current_subset_file, &n, faclin);
    613613            continue;
     
    619619        mr_getline(&incoming, &n, pin);
    620620        if (!i) {
    621             log_msg(my_depth, "Copying master %s", q);
     621            mr_msg(my_depth, "Copying master %s", q);
    622622        }
    623623//      if (!i) { printf("Match --- %s\n", q); }
     
    661661        return (set_EXAT_list(masklist, fattr_fname, "setfattr"));
    662662    } else {
    663         log_msg(1, "ERROR: set_EXAT_list: setfattr doesn't exist");
     663        mr_msg(1, "ERROR: set_EXAT_list: setfattr doesn't exist");
    664664        return(0);
    665665    }
     
    673673        return (set_EXAT_list(masklist, acl_fname, "setfacl"));
    674674    } else {
    675         log_msg(1, "ERROR: set_EXAT_list: setfacl doesn't exist");
     675        mr_msg(1, "ERROR: set_EXAT_list: setfacl doesn't exist");
    676676        return(0);
    677677    }
     
    748748    char_to_add = string_to_add[0];
    749749    if (node->right != NULL && node->ch < char_to_add) {
    750         log_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
     750        mr_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
    751751                char_to_add, node->ch, (node->right)->ch);
    752752        return (add_string_at_node(node->right, string_to_add));
     
    754754    // walk down tree if appropriate
    755755    if (node->down != NULL && node->ch == char_to_add) {
    756         log_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_add);
     756        mr_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_add);
    757757        depth++;
    758758        res = add_string_at_node(node->down, string_to_add + 1);
     
    762762
    763763    if (char_to_add == '\0' && node->ch == '\0') {
    764         log_msg(6, "%s already in tree", original_string);
     764        mr_msg(6, "%s already in tree", original_string);
    765765        return (1);
    766766    }
     
    769769    if (char_to_add < node->ch) // add to the left of node
    770770    {
    771         log_msg(7, "depth=%d char=%c --- adding (left)", depth,
     771        mr_msg(7, "depth=%d char=%c --- adding (left)", depth,
    772772                char_to_add);
    773773        memcpy((void *) newnode, (void *) node, sizeof(struct s_node));
     
    775775    } else if (char_to_add > node->ch)  // add to the right of node
    776776    {
    777         log_msg(7, "depth=%d char=%c --- adding (right)", depth,
     777        mr_msg(7, "depth=%d char=%c --- adding (right)", depth,
    778778                char_to_add);
    779779        newnode->right = node->right;   // newnode is to the RIGHT of node
     
    786786    node->expanded = node->selected = FALSE;
    787787    if (char_to_add == '\0') {
    788         log_msg(6, "Added %s OK", original_string);
     788        mr_msg(6, "Added %s OK", original_string);
    789789        return (0);
    790790    }
    791791    // add the rest
    792     log_msg(6, "Adding remaining chars ('%s')", string_to_add + 1);
     792    mr_msg(6, "Adding remaining chars ('%s')", string_to_add + 1);
    793793    for (i = 1; i < noof_chars; i++) {
    794794        node->down = (struct s_node *) mr_malloc(sizeof(struct s_node));
    795795        node = node->down;
    796796        char_to_add = string_to_add[i];
    797         log_msg(6, "Adding '%c'", char_to_add);
     797        mr_msg(6, "Adding '%c'", char_to_add);
    798798        node->ch = char_to_add;
    799799        node->right = node->down = NULL;
     
    803803        }
    804804    }
    805     log_msg(6, "Finally - added %s OK", original_string);
     805    mr_msg(6, "Finally - added %s OK", original_string);
    806806    return (0);
    807807}
     
    838838    mr_asprintf(&command_to_open_fname, "gzip -dc %s", filelist_fname);
    839839    mr_asprintf(&tmp, "zcat %s | wc -l", filelist_fname);
    840     log_msg(6, "tmp = %s", tmp);
     840    mr_msg(6, "tmp = %s", tmp);
    841841    tmp1 = call_program_and_get_last_line_of_output(tmp);
    842842    mr_free(tmp);
     
    907907
    908908    if (depth == 0) {
    909         log_msg(0, "----------------show filelist--------------");
     909        mr_msg(0, "----------------show filelist--------------");
    910910    }
    911911    current_string[depth] = node->ch;
    912912
    913     log_msg(3, "depth=%d", depth);
     913    mr_msg(3, "depth=%d", depth);
    914914    if (node->down) {
    915         log_msg(3, "moving down");
     915        mr_msg(3, "moving down");
    916916        depth++;
    917917        show_filelist(node->down);
     
    920920
    921921    if (!node->ch) {
    922         log_msg(0, "%s\n", current_string);
     922        mr_msg(0, "%s\n", current_string);
    923923    }
    924924
    925925    if (node->right) {
    926         log_msg(3, "moving right");
     926        mr_msg(3, "moving right");
    927927        show_filelist(node->right);
    928928    }
    929929    if (depth == 0) {
    930         log_msg(0, "----------------show filelist--------------");
     930        mr_msg(0, "----------------show filelist--------------");
    931931    }
    932932    return;
     
    986986    for (node = filelist; node != NULL; node = node->right) {
    987987        str[depth] = node->ch;
    988         log_msg(5, "depth=%d ch=%c", depth, node->ch);
     988        mr_msg(5, "depth=%d ch=%c", depth, node->ch);
    989989        if (!node->ch) {
    990990//    if (node->selected)
     
    13401340#endif
    13411341        mr_free(find_excludes);
    1342         log_msg(5, "find command = %s", strtmp);
     1342        mr_msg(5, "find command = %s", strtmp);
    13431343        system(strtmp);
    13441344        mr_free(strtmp);
     
    13561356        find_skeleton_marker[0] = '\0';
    13571357        skeleton_lino = 1;
    1358         log_msg(5, "entries = %ld", g_skeleton_entries);
     1358        mr_msg(5, "entries = %ld", g_skeleton_entries);
    13591359        percentage = 0;
    13601360    } else if (depth <= MAX_SKEL_DEPTH) // update evalcall form if appropriate
     
    13631363                "grep -Fv \"%s\" %s > %s.new 2> /dev/null", dir,
    13641364                skeleton_filelist, skeleton_filelist);
    1365 //    log_msg(0, "fsm = %s", find_skeleton_marker);
     1365//    mr_msg(0, "fsm = %s", find_skeleton_marker);
    13661366        if (!system(find_skeleton_marker)) {
    13671367            percentage = (int) (skeleton_lino * 100 / g_skeleton_entries);
    13681368            skeleton_lino++;
    1369 //        log_msg(5, "Found %s", dir);
    1370 //        log_msg(2, "Incrementing skeleton_lino; now %ld/%ld (%d%%)", skeleton_lino, g_skeleton_entries, percentage);
     1369//        mr_msg(5, "Found %s", dir);
     1370//        mr_msg(2, "Incrementing skeleton_lino; now %ld/%ld (%d%%)", skeleton_lino, g_skeleton_entries, percentage);
    13711371            sprintf(find_skeleton_marker, "mv -f %s.new %s",
    13721372                    skeleton_filelist, skeleton_filelist);
    1373 //        log_msg(6, "fsm = %s", find_skeleton_marker);
     1373//        mr_msg(6, "fsm = %s", find_skeleton_marker);
    13741374            run_program_and_log_output(find_skeleton_marker, 8);
    13751375            time(&this_time);
     
    13901390    depth++;
    13911391
    1392 //  log_msg(0, "Cataloguing %s", dir);
     1392//  mr_msg(0, "Cataloguing %s", dir);
    13931393    if (sth[0] == ' ') {
    13941394        mr_asprintf(&skip_these, "%s", sth);
     
    14661466        mr_free(find_skeleton_marker);
    14671467        unlink(skeleton_filelist);
    1468         log_msg(5, "g_skeleton_entries = %ld", g_skeleton_entries);
     1468        mr_msg(5, "g_skeleton_entries = %ld", g_skeleton_entries);
    14691469    }
    14701470    return (0);
     
    15651565        mr_free(tmp);
    15661566    } else if (lstat(sz_datefile, &statbuf)) {
    1567         log_msg(2,
     1567        mr_msg(2,
    15681568                "Warning - unable to find date of previous backup. Full backup instead.");
    15691569        differential = 0;
     
    15711571    } else {
    15721572        time_of_last_full_backup = statbuf.st_mtime;
    1573         log_msg(2, "Differential backup. Yay.");
     1573        mr_msg(2, "Differential backup. Yay.");
    15741574    }
    15751575    mr_free(sz_datefile);
     
    15771577// use user-specified filelist (if specified)
    15781578    if (userdef_filelist) {
    1579         log_msg(1,
     1579        mr_msg(1,
    15801580                "Using the user-specified filelist - %s - instead of calculating one",
    15811581                userdef_filelist);
     
    15861586        mr_free(command);
    15871587    } else {
    1588         log_msg(2, "include_paths = '%s'", include_paths);
    1589         log_msg(1, "Calculating filelist");
     1588        mr_msg(2, "include_paths = '%s'", include_paths);
     1589        mr_msg(1, "Calculating filelist");
    15901590        tmp = call_program_and_get_last_line_of_output("locate /win386.swp 2> /dev/null");
    15911591        tmp1 = call_program_and_get_last_line_of_output("locate /hiberfil.sys 2> /dev/null");
     
    15981598        mr_free(tmp2);
    15991599
    1600         log_msg(2, "Excluding paths = '%s'", exclude_paths);
    1601         log_msg(2,
     1600        mr_msg(2, "Excluding paths = '%s'", exclude_paths);
     1601        mr_msg(2,
    16021602                "Generating skeleton filelist so that we can track our progress");
    16031603        mr_asprintf(&skeleton_filelist, "%s/tmpfs/skeleton.txt", tmpdir);
    16041604        make_hole_for_file(skeleton_filelist);
    16051605
    1606         log_msg(4, "g_skeleton_entries = %ld", g_skeleton_entries);
    1607         log_msg(2, "Opening out filelist to %s", sz_filelist);
     1606        mr_msg(4, "g_skeleton_entries = %ld", g_skeleton_entries);
     1607        mr_msg(2, "Opening out filelist to %s", sz_filelist);
    16081608        if (!(fout = fopen(sz_filelist, "w"))) {
    16091609            fatal_error("Cannot openout to sz_filelist");
     
    16111611        i = 0;
    16121612        if (strlen(include_paths) == 0) {
    1613             log_msg(1, "Including only '/' in %s", sz_filelist);
     1613            mr_msg(1, "Including only '/' in %s", sz_filelist);
    16141614            open_and_list_dir("/", exclude_paths, fout,
    16151615                              time_of_last_full_backup, skeleton_filelist);
     
    16181618            while (*p) {
    16191619                q = next_entry(p);
    1620                 log_msg(1, "Including %s in filelist %s", q, sz_filelist);
     1620                mr_msg(1, "Including %s in filelist %s", q, sz_filelist);
    16211621                open_and_list_dir(q, exclude_paths, fout,
    16221622                                  time_of_last_full_backup,
     
    16321632        mr_free(exclude_paths);
    16331633    }
    1634     log_msg(2, "Copying new filelist to scratchdir");
     1634    mr_msg(2, "Copying new filelist to scratchdir");
    16351635    mr_asprintf(&command, "mkdir -p %s/archives", scratchdir);
    16361636    paranoid_system(command);
     
    16461646    mr_free(sz_filelist);
    16471647
    1648     log_msg(2, "Exiting");
     1648    mr_msg(2, "Exiting");
    16491649    return (0);
    16501650}
     
    16831683    noof_chars = strlen(string_to_find) + 1;    /* we include the '\0' */
    16841684
    1685     log_msg(7, "starting --- str=%s", string_to_find);
     1685    mr_msg(7, "starting --- str=%s", string_to_find);
    16861686
    16871687/* walk across tree if necessary */
     
    16891689    char_to_find = string_to_find[0];
    16901690    if (node->right != NULL && node->ch < char_to_find) {
    1691         log_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
     1691        mr_msg(7, "depth=%d --- going RIGHT ... %c-->%c", depth,
    16921692                char_to_find, node->ch, (node->right)->ch);
    16931693        return (find_string_at_node(node->right, string_to_find));
     
    16961696/* walk down tree if appropriate */
    16971697    if (node->down != NULL && node->ch == char_to_find) {
    1698         log_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_find);
     1698        mr_msg(7, "depth=%d char=%c --- going DOWN", depth, char_to_find);
    16991699        depth++;
    17001700        node = find_string_at_node(node->down, string_to_find + 1);
     
    17041704
    17051705    if (char_to_find == '\0' && node->ch == '\0') {
    1706         log_msg(7, "%s is in tree", original_string);
     1706        mr_msg(7, "%s is in tree", original_string);
    17071707        return (node);
    17081708    } else {
    1709         log_msg(7, "%s is NOT in tree", original_string);
     1709        mr_msg(7, "%s is NOT in tree", original_string);
    17101710        return (NULL);
    17111711    }
     
    17341734    size_t len = 0;             // Scrub's patch doesn't work without that
    17351735
    1736 //  log_msg(1, "use_star = %s", (use_star)?"TRUE":"FALSE");
    1737     log_msg(5, "starting");
    1738     log_msg(5, "needles_list_fname = %s", needles_list_fname);
    1739     log_msg(5, "matches_list_fname = %s", matches_list_fname);
     1736//  mr_msg(1, "use_star = %s", (use_star)?"TRUE":"FALSE");
     1737    mr_msg(5, "starting");
     1738    mr_msg(5, "needles_list_fname = %s", needles_list_fname);
     1739    mr_msg(5, "matches_list_fname = %s", matches_list_fname);
    17401740    if (!(fin = fopen(needles_list_fname, "r"))) {
    17411741        fatal_error("Cannot openin needles_list_fname");
     
    17591759        }
    17601760
    1761         log_msg(5, "Looking for '%s'", fname);
     1761        mr_msg(5, "Looking for '%s'", fname);
    17621762        found_node = find_string_at_node(filelist, fname);
    17631763        if (found_node) {
     
    17681768                    fname = tmp;
    17691769                }
    1770                 log_msg(5, "Found '%s'", fname);
     1770                mr_msg(5, "Found '%s'", fname);
    17711771                turn_wildcard_chars_into_literal_chars(tmp, fname);
    17721772                fprintf(fout, "%s\n", tmp);
     
    17991799    struct s_node *nod;
    18001800
    1801     log_msg(3, "Adding %s to filelist", list_of_files_fname);
     1801    mr_msg(3, "Adding %s to filelist", list_of_files_fname);
    18021802    if (!(fin = fopen(list_of_files_fname, "r"))) {
    18031803        iamhere(list_of_files_fname);
     
    18121812            tmp[strlen(tmp) - 1] = '\0';
    18131813        }
    1814         log_msg(2, "tmp = '%s'", tmp);
     1814        mr_msg(2, "tmp = '%s'", tmp);
    18151815        if (!tmp[0]) {
    18161816            continue;
    18171817        }
    18181818        if ((nod = find_string_at_node(filelist, tmp))) {
    1819             log_msg(5, "Found '%s' in filelist already. Cool.", tmp);
     1819            mr_msg(5, "Found '%s' in filelist already. Cool.", tmp);
    18201820        } else {
    18211821            add_string_at_node(filelist, tmp);
     
    18251825        if (nod && flag_em) {
    18261826            toggle_path_selection(filelist, tmp, TRUE);
    1827             log_msg(5, "Flagged '%s'", tmp);
     1827            mr_msg(5, "Flagged '%s'", tmp);
    18281828        }
    18291829    }
  • trunk/mondo/src/common/libmondo-files.c

    r1043 r1086  
    155155
    156156    if (lstat(filename, &buf)) {
    157         log_msg(20, "%s does not exist", filename);
     157        mr_msg(20, "%s does not exist", filename);
    158158        return (FALSE);
    159159    } else {
    160         log_msg(20, "%s exists", filename);
     160        mr_msg(20, "%s exists", filename);
    161161        return (TRUE);
    162162    }
     
    331331
    332332    if (output != NULL && does_file_exist(output)) {
    333         log_msg(4, "find_home_of_exe () --- Found %s at %s", fname, output);
     333        mr_msg(4, "find_home_of_exe () --- Found %s at %s", fname, output);
    334334    } else {
    335335        mr_free(output);
    336         log_msg(4, "find_home_of_exe() --- Could not find %s", fname);
     336        mr_msg(4, "find_home_of_exe() --- Could not find %s", fname);
    337337    }
    338338    return (output);
     
    662662    sz_res = call_program_and_get_last_line_of_output(command);
    663663    file_len_K = atol(sz_res);
    664     log_msg(4, "%s --> %s --> %ld", command, sz_res, file_len_K);
     664    mr_msg(4, "%s --> %s --> %ld", command, sz_res, file_len_K);
    665665    mr_free(command);
    666666    mr_free(sz_res);
     
    699699            ("Cannot open biggielist. OK, so estimate is based on filesets only.");
    700700    } else {
    701         log_msg(4, "Reading it...");
     701        mr_msg(4, "Reading it...");
    702702        for (mr_getline(&fname, &n, fin); !feof(fin);
    703703             mr_getline(&fname, &n, fin)) {
     
    730730            if (file_len_K > 0) {
    731731                scratchL += file_len_K;
    732                 log_msg(4, "%s --> %ld K", fname, file_len_K);
     732                mr_msg(4, "%s --> %ld K", fname, file_len_K);
    733733            }
    734734            mr_asprintf(&comment,
    735735                    "After adding %s, scratchL+%ld now equals %ld", fname,
    736736                    file_len_K, scratchL);
    737             log_msg(4, comment);
     737            mr_msg(4, comment);
    738738            mr_free(comment);
    739739
     
    948948
    949949    /* BERLIOS: Why do we need to do it here as well ? */
    950     log_msg(4, "g_mondo_home='%s'", g_mondo_home);
     950    mr_msg(4, "g_mondo_home='%s'", g_mondo_home);
    951951    if ((g_mondo_home == NULL) || strlen(g_mondo_home) < 2) {
    952952        mr_free(g_mondo_home);
     
    956956            bkpinfo->scratchdir);
    957957
    958     log_msg(4, "command = %s", command);
     958    mr_msg(4, "command = %s", command);
    959959    if (run_program_and_log_output(command, 1)) {
    960960        fatal_error("Failed to copy Mondo's stuff to scratchdir");
     
    966966    /* i18n */
    967967    mr_asprintf(&command, CP_BIN " --parents /usr/share/locale/*/LC_MESSAGES/mondo.mo %s",bkpinfo->scratchdir);
    968     log_msg(4, "command = %s", command);
     968    mr_msg(4, "command = %s", command);
    969969    run_program_and_log_output(command, 1);
    970970    mr_free(command);
     
    12981298                "#!/bin/sh\n\nmount /boot > /dev/null 2> /dev/null\ngrub-install $@\nres=$?\nsync;sync;sync\nexit $res\n");
    12991299        paranoid_fclose(fout);
    1300         log_msg(2, "Created %s", outfile);
     1300        mr_msg(2, "Created %s", outfile);
    13011301        mr_asprintf(&tmp, "chmod +x %s", outfile);
    13021302        paranoid_system(tmp);
  • trunk/mondo/src/common/libmondo-fork.c

    r1081 r1086  
    7575/*@***********   End Variables ***************************************/
    7676
    77     log_msg(3, "Starting");
     77    mr_msg(3, "Starting");
    7878    assert(bkpinfo != NULL);
    7979    assert_string_is_neither_NULL_nor_zerolength(basic_call);
     
    9090
    9191    resolve_naff_tokens(ultimate_call, tmp, MONDO_LOGFILE, "_ERR_");
    92     log_msg(4, "basic call = '%s'", basic_call);
    93     log_msg(4, "midway_call = '%s'", midway_call);
    94     log_msg(4, "tmp = '%s'", tmp);
    95     log_msg(4, "ultimate call = '%s'", ultimate_call);
     92    mr_msg(4, "basic call = '%s'", basic_call);
     93    mr_msg(4, "midway_call = '%s'", midway_call);
     94    mr_msg(4, "tmp = '%s'", tmp);
     95    mr_msg(4, "ultimate call = '%s'", ultimate_call);
    9696    mr_asprintf(&command, "%s >> %s", ultimate_call, MONDO_LOGFILE);
    9797
    9898    log_to_screen
    9999        (_("Please be patient. Do not be alarmed by on-screen inactivity."));
    100     log_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'",
     100    mr_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'",
    101101            what_i_am_doing);
    102102    if (bkpinfo->manual_cd_tray) {
     
    113113        }
    114114#endif
    115         log_msg(1, "command = '%s'", command);
     115        mr_msg(1, "command = '%s'", command);
    116116        retval += system(command);
    117117        if (!g_text_mode) {
     
    119119        }
    120120        if (retval) {
    121             log_msg(2, "Basic call '%s' returned an error.", basic_call);
     121            mr_msg(2, "Basic call '%s' returned an error.", basic_call);
    122122            popup_and_OK(_("Press ENTER to continue."));
    123123            popup_and_OK
     
    127127    /* if text mode then do the above & RETURN; if not text mode, do this... */
    128128    else {
    129         log_msg(3, "command = '%s'", command);
     129        mr_msg(3, "command = '%s'", command);
    130130//      yes_this_is_a_goto:
    131131        retval =
     
    168168    assert(program != NULL);
    169169    if (!program[0]) {
    170         log_msg(2, "Warning - asked to run zerolength program");
     170        mr_msg(2, "Warning - asked to run zerolength program");
    171171        return (1);
    172172    }
     
    189189    res = system(callstr);
    190190    if (((res == 0) && log_if_success) || ((res != 0) && log_if_failure)) {
    191         log_msg(0, "running: %s", callstr);
    192         log_msg(0,
     191        mr_msg(0, "running: %s", callstr);
     192        mr_msg(0,
    193193                "--------------------------------start of output-----------------------------");
    194194    }
     
    219219            if ((res == 0 && log_if_success)
    220220                || (res != 0 && log_if_failure)) {
    221                 log_msg(0, incoming);
     221                mr_msg(0, incoming);
    222222            }
    223223        }
     
    227227    unlink("/tmp/mondo-run-prog-thing.tmp");
    228228    if ((res == 0 && log_if_success) || (res != 0 && log_if_failure)) {
    229         log_msg(0,
     229        mr_msg(0,
    230230                "--------------------------------end of output------------------------------");
    231231        if (res) {
    232             log_msg(0, "...ran with res=%d", res);
     232            mr_msg(0, "...ran with res=%d", res);
    233233        } else {
    234             log_msg(0, "...ran just fine. :-)");
     234            mr_msg(0, "...ran just fine. :-)");
    235235        }
    236236    }
    237237//  else
    238 //    { log_msg (0, "-------------------------------ran w/ res=%d------------------------------", res); }
     238//    { mr_msg (0, "-------------------------------ran w/ res=%d------------------------------", res); }
    239239    return (res);
    240240}
     
    275275    open_evalcall_form(what_i_am_doing);
    276276    mr_asprintf(&tmp, "Executing %s", basic_call);
    277     log_msg(2, tmp);
     277    mr_msg(2, tmp);
    278278    mr_free(tmp);
    279279
     
    292292        log_to_screen(_("Waiting for external binary to start"));
    293293        for (i = 0; i < 60 && !does_file_exist(lockfile); sleep(1), i++) {
    294             log_msg(3, "Waiting for lockfile %s to exist", lockfile);
     294            mr_msg(3, "Waiting for lockfile %s to exist", lockfile);
    295295        }
    296296    }
     
    305305    /* Log actual pclose errors. */
    306306    if (errno)
    307         log_msg(5, "pclose err: %d", errno);
     307        mr_msg(5, "pclose err: %d", errno);
    308308    /* Check if we have a valid status. If we do, extract the called program's exit code. */
    309309    /* If we don't, highlight this fact by returning -1. */
     
    343343    FILE *ftmp = NULL;
    344344
    345     log_msg(5, "Opening.");
     345    mr_msg(5, "Opening.");
    346346    bufcap = 256L * 1024L;
    347347    buf = mr_malloc(bufcap);
     
    367367            mr_free(tmp);
    368368
    369             log_msg(7,
     369            mr_msg(7,
    370370                    "subslice #%ld --- I have read %ld of %ld bytes in from f_orig",
    371371                    subsliceno, bytes_read_in, bytes_to_be_read);
     
    377377            mr_free(tmp);
    378378
    379             log_msg(7, "Subslice #%d written OK", subsliceno);
     379            mr_msg(7, "Subslice #%d written OK", subsliceno);
    380380            subsliceno++;
    381381        }
     
    393393            fatal_error("Cannot read the introductory block");
    394394        }
    395         log_msg(5, "tmp is %s", tmp);
     395        mr_msg(5, "tmp is %s", tmp);
    396396        if (!strstr(tmp, PIMP_START_SZ)) {
    397397            fatal_error("Can't find intro blk");
     
    402402        bytes_to_be_read = atol(tmp);
    403403        while (bytes_to_be_read > 0) {
    404             log_msg(7, "subslice#%ld, bytes=%ld", subsliceno,
     404            mr_msg(7, "subslice#%ld, bytes=%ld", subsliceno,
    405405                    bytes_to_be_read);
    406406            bytes_read_in = fread(buf, 1, bytes_to_be_read, fin);
     
    414414            }
    415415            if (atol(tmp) != subsliceno) {
    416                 log_msg(1, "Wanted subslice %ld but got %ld ('%s')",
     416                mr_msg(1, "Wanted subslice %ld but got %ld ('%s')",
    417417                        subsliceno, atol(tmp), tmp);
    418418            }
    419             log_msg(7, "Subslice #%ld read OK", subsliceno);
     419            mr_msg(7, "Subslice #%ld read OK", subsliceno);
    420420            subsliceno++;
    421421            if (fread(tmp, 1, 64L, fin) != 64L) {
     
    426426    }
    427427
    428 //  log_msg(4, "Written %ld of %ld bytes", bytes_written_out, bytes_read_in);
     428//  mr_msg(4, "Written %ld of %ld bytes", bytes_written_out, bytes_read_in);
    429429
    430430    if (direction == 'w') {
     
    436436        mr_free(tmp);
    437437    } else {
    438         log_msg(1, "tmpA is %s", tmp);
     438        mr_msg(1, "tmpA is %s", tmp);
    439439        if (!strstr(tmp, PIMP_END_SZ)) {
    440440            if (fread(tmp, 1, 64L, fin) != 64L) {
    441441                fatal_error("Can't read the final block");
    442442            }
    443             log_msg(5, "tmpB is %s", tmp);
     443            mr_msg(5, "tmpB is %s", tmp);
    444444            if (!strstr(tmp, PIMP_END_SZ)) {
    445445                ftmp = fopen("/tmp/out.leftover", "w");
    446446                bytes_read_in = fread(tmp, 1, 64L, fin);
    447                 log_msg(1, "bytes_read_in = %ld", bytes_read_in);
     447                mr_msg(1, "bytes_read_in = %ld", bytes_read_in);
    448448//      if (bytes_read_in!=128+64) { fatal_error("Can't read the terminating block"); }
    449449                fwrite(tmp, 1, bytes_read_in, ftmp);
     
    455455                /* BERLIOS : strange ???
    456456                s-printf(tmp, "I am here - %llu", ftello(fin));
    457                 log_msg(0, tmp);
     457                mr_msg(0, tmp);
    458458                */
    459459                fread(tmp, 1, 512, fin);
    460                 log_msg(0, "tmp = '%s'", tmp);
     460                mr_msg(0, "tmp = '%s'", tmp);
    461461                fwrite(tmp, 1, 512, ftmp);
    462462                fclose(ftmp);
     
    468468
    469469    mr_free(buf);
    470     log_msg(3, "Successfully copied %ld bytes", bytes_written_out);
     470    mr_msg(3, "Successfully copied %ld bytes", bytes_written_out);
    471471    return (retval);
    472472}
     
    521521    mr_asprintf(&command, "%s >> %s 2>> %s; rm -f %s", cmd, tempfile, tempfile,
    522522            tempfile);
    523     log_msg(3, command);
     523    mr_msg(3, command);
    524524    open_evalcall_form(tt);
    525525
     
    537537        pcno = grab_percentage_from_last_line_of_file(MONDO_LOGFILE);
    538538        if (pcno < 0 || pcno > 100) {
    539             log_msg(5, "Weird pc#");
     539            mr_msg(5, "Weird pc#");
    540540            continue;
    541541        }
     
    567567    res = 999;
    568568    sz_command = (char *) info;
    569     log_msg(4, "sz_command = '%s'", sz_command);
     569    mr_msg(4, "sz_command = '%s'", sz_command);
    570570    res = system(sz_command);
    571571    if (res > 256 && res != 4444) {
    572572        res = res / 256;
    573573    }
    574     log_msg(4, "child res = %d", res);
     574    mr_msg(4, "child res = %d", res);
    575575    sz_command[0] = '\0';
    576576    pthread_exit((void *) (&res));
     
    602602
    603603    mr_asprintf(&command, "%s 2>> %s", cmd, MONDO_LOGFILE);
    604     log_msg(3, "command = '%s'", command);
     604    mr_msg(3, "command = '%s'", command);
    605605    if ((res =
    606606         pthread_create(&childthread, NULL, run_prog_in_bkgd_then_exit,
     
    609609    }
    610610
    611     log_msg(8, "Parent running");
     611    mr_msg(8, "Parent running");
    612612    open_evalcall_form(tt);
    613613    for (sleep(1); command[0] != '\0'; sleep(1)) {
    614614        pcno = grab_percentage_from_last_line_of_file(MONDO_LOGFILE);
    615615        if (pcno <= 0 || pcno > 100) {
    616             log_msg(8, "Weird pc#");
     616            mr_msg(8, "Weird pc#");
    617617            continue;
    618618        }
     
    639639        res = 666;
    640640    }
    641     log_msg(3, "Parent res = %d", res);
     641    mr_msg(3, "Parent res = %d", res);
    642642    return (res);
    643643}
  • trunk/mondo/src/common/libmondo-mountlist.c

    r1081 r1086  
    536536        flaws_str = tmp1;
    537537        res++;
    538         log_msg(1, tmp);
     538        mr_msg(1, tmp);
    539539        mr_free(tmp);
    540540        return (FALSE);
     
    902902                     "Not putting %s in list of drives: it's a virtual drive",
    903903                     drive);
    904             log_msg(8, tmp);
     904            mr_msg(8, tmp);
    905905            mr_free(tmp);
    906906            continue;
     
    912912                     "Not putting %s in list of drives: it has zero size (maybe an LVM volume)",
    913913                     drive);
    914             log_msg(8, tmp);
     914            mr_msg(8, tmp);
    915915            mr_free(tmp);
    916916            continue;
     
    931931                 "Putting %s with size %lli in list of drives",
    932932                 drive, size);
    933         log_msg(8, tmp);
     933        mr_msg(8, tmp);
    934934        mr_free(tmp);
    935935
     
    946946    }
    947947    drivelist->entries = noof_drives;
    948     log_msg(8, "Made list of drives");
     948    mr_msg(8, "Made list of drives");
    949949
    950950    return (noof_drives);
     
    10901090            !strcmp(mountlist->el[items].device, "devpts")
    10911091            ) {
    1092             log_msg(1,
     1092            mr_msg(1,
    10931093                    "Ignoring %s in mountlist - not loading that line :) ",
    10941094                    mountlist->el[items].device);
  • trunk/mondo/src/common/libmondo-msg.c

    r783 r1086  
    1717
    1818/**
    19  * The standard log_debug_msg() (log_msg() also due to a macro). Writes some describing
     19 * The standard log_debug_msg() (mr_msg() also due to a macro). Writes some describing
    2020 * information to the logfile.
    2121 */
  • trunk/mondo/src/common/libmondo-raid.c

    r1081 r1086  
    599599    get_next_raidtab_line(fin, label, value);
    600600    while (!feof(fin)) {
    601         log_msg(1, "Looking for raid record #%d", items);
     601        mr_msg(1, "Looking for raid record #%d", items);
    602602        initialize_raidrec(&raidlist->el[items]);
    603603        v = 0;
     
    611611        raidlist->el[items].additional_vars.entries = v;
    612612        if (feof(fin)) {
    613             log_msg(1, "No more records.");
     613            mr_msg(1, "No more records.");
    614614            continue;
    615615        }
    616         log_msg(2, "Record #%d (%s) found", items, value);
     616        mr_msg(2, "Record #%d (%s) found", items, value);
    617617        raidlist->el[items].raid_device = value;
    618618        for (get_next_raidtab_line(fin, label, value);
     
    625625    paranoid_fclose(fin);
    626626    raidlist->entries = items;
    627     log_msg(1, "Raidtab loaded successfully.");
    628     log_msg(1, "%d RAID devices in raidtab", items);
     627    mr_msg(1, "Raidtab loaded successfully.");
     628    mr_msg(1, "%d RAID devices in raidtab", items);
    629629    return (0);
    630630}
     
    686686            raidrec->parity = 3;
    687687        } else {
    688             log_msg(1, "Unknown RAID parity algorithm '%s'\n.", value);
     688            mr_msg(1, "Unknown RAID parity algorithm '%s'\n.", value);
    689689        }
    690690    } else if (!strcmp(label, "device")) {
     
    946946  // open file
    947947  if (!(fin = fopen(MDSTAT_FILE, "r"))) {
    948     log_msg(1, "Could not open %s.\n", MDSTAT_FILE);
     948    mr_msg(1, "Could not open %s.\n", MDSTAT_FILE);
    949949    return 1;
    950950  }
     
    990990    token = mr_strtok (string, delims, &lastpos);
    991991    if (!strcmp(token, "inactive")) {
    992       log_msg(1, "RAID device '%s' inactive.\n",
     992      mr_msg(1, "RAID device '%s' inactive.\n",
    993993         raidlist->el[raidlist->entries].raid_device);
    994994      mr_free(string);
     
    10171017      raidlist->el[raidlist->entries].raid_level = 10;
    10181018    } else {
    1019       log_msg(1, "Unknown RAID level '%s'.\n", token);
     1019      mr_msg(1, "Unknown RAID level '%s'.\n", token);
    10201020      mr_free(string);
    10211021      mr_free(token);
     
    10611061        break;
    10621062      default: // error
    1063         log_msg(1, "Unknown device type '%c'\n", type);
     1063        mr_msg(1, "Unknown device type '%c'\n", type);
    10641064        mr_free(string);
    10651065        mr_free(token);
     
    11531153    break;
    11541154      default: // error
    1155     log_msg(1, "Row %d should not occur in record!\n", row);
     1155    mr_msg(1, "Row %d should not occur in record!\n", row);
    11561156    break;
    11571157      }
  • trunk/mondo/src/common/libmondo-stream.c

    r1081 r1086  
    363363            wrong_marker(BLK_STOP_EXAT_FILE, *pctrl_chr);
    364364        }
    365         log_msg(1, "Got xattr");
     365        mr_msg(1, "Got xattr");
    366366    }
    367367    mr_free(fname);
     
    390390            wrong_marker(BLK_STOP_EXTENDED_ATTRIBUTES, *pctrl_chr);
    391391        }
    392         log_msg(1, "Got acl");
     392        mr_msg(1, "Got acl");
    393393    }
    394394    mr_free(fname);
     
    408408    // tarball itself
    409409    res = read_header_block_from_stream(ptmp_size, tmp_fname, pctrl_chr);
    410     log_msg(1, "now looking for afioball");
     410    mr_msg(1, "now looking for afioball");
    411411    return (retval);
    412412}
     
    580580
    581581    if (strncmp(tapedev, "/dev/", 5)) {
    582         log_msg(1,
     582        mr_msg(1,
    583583                "Not using 'mt setblk'. This isn't an actual /dev entry.");
    584584        return (0);
     
    910910//    crctt=crc16=0;
    911911            where_I_was_before_tape_change = size;
    912             log_msg(4, "where_I_was_... = %lld",
     912            mr_msg(4, "where_I_was_... = %lld",
    913913                    where_I_was_before_tape_change);
    914914            start_to_read_from_next_tape(bkpinfo);
    915             log_msg(4, "Started reading from next tape.");
     915            mr_msg(4, "Started reading from next tape.");
    916916            skip_incoming_files_until_we_find_this_one(temp_fname);
    917             log_msg(4, "Skipped irrelevant files OK.");
     917            mr_msg(4, "Skipped irrelevant files OK.");
    918918            for (size = orig_size; size > where_I_was_before_tape_change;
    919919                 size -= bytes_to_write) {
     
    921921                    fread(datablock, 1, bytes_to_read, g_tape_stream);
    922922            }
    923             log_msg(4, "'size' is now %lld (should be %lld)", size,
     923            mr_msg(4, "'size' is now %lld (should be %lld)", size,
    924924                    where_I_was_before_tape_change);
    925925            log_to_screen("Successfully re-sync'd tape");
     
    938938#endif
    939939    }
    940     log_msg(6, "Total read from tape for this file = %lld",
     940    mr_msg(6, "Total read from tape for this file = %lld",
    941941            total_read_from_tape_for_this_file);
    942     log_msg(6, ".......................... Should be %lld", orig_size);
     942    mr_msg(6, ".......................... Should be %lld", orig_size);
    943943    g_tape_posK += total_read_from_tape_for_this_file / 1024;
    944944    mr_asprintf(&actual_cksum, "%04x%04x", crc16, crctt);
     
    10271027    }
    10281028    tempblock[i] = '\0';
    1029     log_msg(6, "%s (fname=%s, size=%ld K)",
     1029    mr_msg(6, "%s (fname=%s, size=%ld K)",
    10301030            marker_to_string(*pcontrol_char), tempblock + 1000,
    10311031            (long) (*plen) >> 10);
     
    11411141        pB = the_file_I_was_reading;
    11421142    }
    1143     log_msg(1, "skip_incoming_..(%s)", pB);
    1144     log_msg(2, "Looking for initial START_AN_AFIO_OR_SLICE");
     1143    mr_msg(1, "skip_incoming_..(%s)", pB);
     1144    mr_msg(2, "Looking for initial START_AN_AFIO_OR_SLICE");
    11451145    ctrl_chr = -1;
    11461146    while (ctrl_chr != BLK_START_AN_AFIO_OR_SLICE) {
     
    11511151            break;
    11521152        }
    1153         log_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
     1153        mr_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
    11541154        wrong_marker(BLK_START_AN_AFIO_OR_SLICE, ctrl_chr);
    1155         log_msg(3, "Still trying to re-sync w/ tape");
     1155        mr_msg(3, "Still trying to re-sync w/ tape");
    11561156        mr_free(temp_fname);
    11571157        temp_fname = (char *)&res;
     
    11641164            break;
    11651165        }
    1166         log_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
     1166        mr_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
    11671167        wrong_marker(BLK_START_FILE, ctrl_chr);
    1168         log_msg(3, "Still trying to re-sync w/ tape");
     1168        mr_msg(3, "Still trying to re-sync w/ tape");
    11691169        /* Do not desallocate when the while condition is met */
    11701170        if (ctrl_chr != BLK_START_FILE) {
     
    11861186    }
    11871187    while (strcmp(pA, pB)) {
    1188         log_msg(6, "Skipping %s (it's not %s)", temp_fname,
     1188        mr_msg(6, "Skipping %s (it's not %s)", temp_fname,
    11891189                the_file_I_was_reading);
    11901190        for (size = temp_size; size > 0; size -= bytes_to_write) {
     
    12301230         */
    12311231    }
    1232     log_msg(2, "Reading %s (it matches %s)", temp_fname,
     1232    mr_msg(2, "Reading %s (it matches %s)", temp_fname,
    12331233            the_file_I_was_reading);
    12341234    mr_free(temp_fname);
     
    12751275        wrong_marker(BLK_START_OF_BACKUP, ctrlchr);
    12761276    } else {
    1277         log_msg(3, "Next tape opened OK. Whoopee!");
     1277        mr_msg(3, "Next tape opened OK. Whoopee!");
    12781278    }
    12791279    return (res);
     
    13501350    char *fname;
    13511351
    1352     log_msg(2, "I am now writing back catalog to tape");
     1352    mr_msg(2, "I am now writing back catalog to tape");
    13531353    last = g_tapecatalog->entries - 1;
    13541354    for (i = 0; i <= last; i++) {
     
    13561356                 g_tapecatalog->el[i].fname);
    13571357        if (!does_file_exist(fname)) {
    1358             log_msg(6, "Can't write %s - it doesn't exist.", fname);
     1358            mr_msg(6, "Can't write %s - it doesn't exist.", fname);
    13591359        } else {
    13601360            write_header_block_to_stream(length_of_file(fname),
    13611361                                         "start-backcatalog-afio-or-slice",
    13621362                                         BLK_START_AN_AFIO_OR_SLICE);
    1363             log_msg(2, "Writing %s", fname);
     1363            mr_msg(2, "Writing %s", fname);
    13641364            if (write_file_to_stream_from_file(bkpinfo, fname)) {
    13651365                res++;
    1366                 log_msg(2, "%s failed", fname);
     1366                mr_msg(2, "%s failed", fname);
    13671367            }
    13681368            if (i != last) {
     
    13741374        mr_free(fname);
    13751375    }
    1376     log_msg(2, "Finished writing back catalog to tape");
     1376    mr_msg(2, "Finished writing back catalog to tape");
    13771377    return (res);
    13781378}
     
    16061606             marker_to_string(control_char), p,
    16071607             (long) length_of_incoming_file >> 10);
    1608     log_msg(6, tmp);
     1608    mr_msg(6, tmp);
    16091609    mr_free(tmp);
    16101610    return (0);
  • trunk/mondo/src/common/libmondo-tools.c

    r1081 r1086  
    232232        }
    233233    }
    234 //  log_msg(1, "tmp = '%s'", tmp);
     234//  mr_msg(1, "tmp = '%s'", tmp);
    235235    d = atof(tmp);
    236236#endif
    237     log_msg(1, "g_kernel_version = %f", d);
     237    mr_msg(1, "g_kernel_version = %f", d);
    238238    return (d);
    239239}
     
    368368        1024;
    369369
    370     log_msg(1, "Foo");
     370    mr_msg(1, "Foo");
    371371    if (bkpinfo->backup_media_type == tape) {
    372         log_msg(1, "Bar");
     372        mr_msg(1, "Bar");
    373373        mr_asprintf(&tmp, "mt -f %s status", bkpinfo->media_device);
    374         log_msg(1, "tmp = '%s'", tmp);
     374        mr_msg(1, "tmp = '%s'", tmp);
    375375        if (run_program_and_log_output(tmp, 3)) {
    376376            fatal_error
     
    496496            mr_free(command);
    497497        }
    498         log_msg(2, "call_make_iso (DVD res) is ... %s",
     498        mr_msg(2, "call_make_iso (DVD res) is ... %s",
    499499                bkpinfo->call_make_iso);
    500500    }                           // end of DVD code
     
    739739    int i = 0;
    740740
    741     log_msg(1, "Hi");
     741    mr_msg(1, "Hi");
    742742
    743743    assert(bkpinfo != NULL);
     
    10581058         else if (strstr(value, "/dev/") && strstr(value, "t0")
    10591059               && !strcmp(label, "media-dev")) {
    1060         log_msg(2, "FYI, I shan't read new value for %s - already got %s",
     1060        mr_msg(2, "FYI, I shan't read new value for %s - already got %s",
    10611061                label, value);
    10621062        return (0);
     
    11141114    char *command;
    11151115
    1116     log_msg(1, "Started sub");
    1117     log_msg(4, "Setting command to something");
     1116    mr_msg(1, "Started sub");
     1117    mr_msg(4, "Setting command to something");
    11181118    mr_asprintf(&command,
    11191119             "grep -v ':' /etc/fstab | grep -vE '^#.*$' | grep -E \"[   ]/boot[     ]\" | tr -s ' ' '\t' | cut -f1 | head -n1");
    1120     log_msg(4, "Cool. Command = '%s'", command);
     1120    mr_msg(4, "Cool. Command = '%s'", command);
    11211121    tmp = call_program_and_get_last_line_of_output(command);
    11221122    mr_free(command);
    11231123
    1124     log_msg(4, "tmp = '%s'", tmp);
     1124    mr_msg(4, "tmp = '%s'", tmp);
    11251125    if (tmp) {
    11261126        log_it("/boot is at %s according to /etc/fstab", tmp);
     
    11291129                mr_free(g_boot_mountpt);
    11301130                mr_asprintf(&g_boot_mountpt, "/boot");
    1131                 log_msg(1, "Mounted /boot");
     1131                mr_msg(1, "Mounted /boot");
    11321132            } else {
    11331133                log_it("...ignored cos it's a label :-)");
     
    11351135        } else {
    11361136            mr_asprintf(&command, "mount | grep -E '^%s'", tmp);
    1137             log_msg(3, "command = %s", command);
     1137            mr_msg(3, "command = %s", command);
    11381138            if (run_program_and_log_output(command, 5)) {
    11391139                mr_free(g_boot_mountpt);
     
    11511151                    mr_asprintf(&g_boot_mountpt, " ");
    11521152                    */
    1153                     log_msg(1, "Plan B");
     1153                    mr_msg(1, "Plan B");
    11541154                    if (!run_program_and_log_output("mount /boot", 5)) {
    11551155                        mr_free(g_boot_mountpt);
    11561156                        mr_asprintf(&g_boot_mountpt, "/boot");
    1157                         log_msg(1, "Plan B worked");
     1157                        mr_msg(1, "Plan B worked");
    11581158                    } else {
    1159                         log_msg(1,
     1159                        mr_msg(1,
    11601160                                "Plan B failed. Unable to mount /boot for backup purposes. This probably means /boot is mounted already, or doesn't have its own partition.");
    11611161                    }
     
    11671167    }
    11681168    mr_free(tmp);
    1169     log_msg(1, "Ended sub");
     1169    mr_msg(1, "Ended sub");
    11701170}
    11711171
     
    11781178    char *tmp;
    11791179
    1180     log_msg(3, "starting");
     1180    mr_msg(3, "starting");
    11811181    if (g_boot_mountpt != NULL) {
    11821182        mr_asprintf(&tmp, "umount %s", g_boot_mountpt);
     
    11861186        mr_free(tmp);
    11871187    }
    1188     log_msg(3, "leaving");
     1188    mr_msg(3, "leaving");
    11891189}
    11901190
     
    12911291           ("ps ax | grep -w magicdev | grep -v grep | tr -s '\t' ' '| cut -d' ' -f6-99");
    12921292    if (g_magicdev_command) {
    1293         log_msg(1, "g_magicdev_command = '%s'", g_magicdev_command);
     1293        mr_msg(1, "g_magicdev_command = '%s'", g_magicdev_command);
    12941294        paranoid_system("killall magicdev");
    12951295    }
  • trunk/mondo/src/common/libmondo-verify.c

    r1081 r1086  
    7171*/
    7272
    73     log_msg(1, "Now scanning log file for 'afio: ' stuff");
     73    mr_msg(1, "Now scanning log file for 'afio: ' stuff");
    7474    mr_asprintf(&command,
    7575             "grep \"afio: \" %s | sed 's/afio: //' | grep -vE '^/dev/.*$' >> %s",
    7676             stderr_fname, afio_found_changes);
    77     log_msg(2, command);
     77    mr_msg(2, command);
    7878    res = system(command);
    7979    mr_free(command);
    8080    if (res) {
    81         log_msg(2, "Warning - failed to think");
    82     }
    83 
    84     log_msg(1, "Now scanning log file for 'star: ' stuff");
     81        mr_msg(2, "Warning - failed to think");
     82    }
     83
     84    mr_msg(1, "Now scanning log file for 'star: ' stuff");
    8585    mr_asprintf(&command,
    8686             "grep \"star: \" %s | sed 's/star: //' | grep -vE '^/dev/.*$' >> %s",
    8787             stderr_fname, afio_found_changes);
    88     log_msg(2, command);
     88    mr_msg(2, command);
    8989    res = system(command);
    9090    mr_free(command);
    9191    if (res) {
    92         log_msg(2, "Warning - failed to think");
     92        mr_msg(2, "Warning - failed to think");
    9393    }
    9494//  exclude_nonexistent_files (afio_found_changes);
     
    9898             ignorefiles_fname, afio_found_changes, afio_found_changes,
    9999             changedfiles_fname);
    100     log_msg(2, command);
     100    mr_msg(2, command);
    101101    paranoid_system(command);
    102102    mr_free(command);
     
    144144    if (g_last_afioball_number != set_number - 1) {
    145145        if (set_number == 0) {
    146             log_msg(1,
     146            mr_msg(1,
    147147                    "Weird error in verify_afioballs_on_CD() but it's really a cosmetic error, nothing more");
    148148        } else {
     
    163163         does_file_exist(vfy_tball_fname(bkpinfo, mountpoint, total_sets));
    164164         total_sets++) {
    165         log_msg(1, "total_sets = %d", total_sets);
     165        mr_msg(1, "total_sets = %d", total_sets);
    166166    }
    167167    for (;
     
    172172                                                           g_last_afioball_number);
    173173        update_evalcall_form(percentage);
    174         log_msg(1, "set = %d", set_number);
     174        mr_msg(1, "set = %d", set_number);
    175175        retval +=
    176176            verify_an_afioball_from_CD(bkpinfo,
     
    270270        // handle slices until end of CD
    271271        if (slice_num == 0) {
    272             log_msg(2, "ISO=%d  bigfile=%ld --START--",
     272            mr_msg(2, "ISO=%d  bigfile=%ld --START--",
    273273                    g_current_media_number, bigfile_num);
    274274            if (!(fin = fopen(tmp1,"r"))) {
    275                 log_msg(2, "Cannot open bigfile's info file");
     275                mr_msg(2, "Cannot open bigfile's info file");
    276276            } else {
    277277                if (fread
    278278                    ((void *) &biggiestruct, 1, sizeof(biggiestruct),
    279279                     fin) < sizeof(biggiestruct)) {
    280                     log_msg(2, "Unable to get biggiestruct");
     280                    mr_msg(2, "Unable to get biggiestruct");
    281281                }
    282282                paranoid_fclose(fin);
     
    284284            mr_asprintf(&tmp2, "%s/%s", bkpinfo->restore_path,
    285285                     biggiestruct.filename);
    286             log_msg(2, "Opening biggiefile #%ld - '%s'", bigfile_num, tmp2);
     286            mr_msg(2, "Opening biggiefile #%ld - '%s'", bigfile_num, tmp2);
    287287            if (!(forig = fopen(tmp2, "r"))) {
    288                 log_msg(2, "Failed to open bigfile. Darn.");
     288                mr_msg(2, "Failed to open bigfile. Darn.");
    289289                retval++;
    290290            }
     
    293293            slice_num++;
    294294        } else if (does_file_exist(tmp1)) {
    295             log_msg(2, "ISO=%d  bigfile=%ld ---END---",
     295            mr_msg(2, "ISO=%d  bigfile=%ld ---END---",
    296296                    g_current_media_number, bigfile_num);
    297297            bigfile_num++;
     
    299299            slice_num = 0;
    300300        } else {
    301             log_msg(2, "ISO=%d  bigfile=%ld  slice=%ld  \r",
     301            mr_msg(2, "ISO=%d  bigfile=%ld  slice=%ld  \r",
    302302                    g_current_media_number, bigfile_num, slice_num);
    303303            if (bkpinfo->compression_level > 0) {
     
    327327                paranoid_pclose(pin);
    328328                if (res && !strncmp(biggiestruct.filename, " /dev/", 5)) {
    329                     log_msg(3,
     329                    mr_msg(3,
    330330                            "Ignoring differences between %s and live filesystem because it's a device and therefore the archives are stored via ntfsclone, not dd.",
    331331                            biggiestruct.filename);
    332                     log_msg(3,
     332                    mr_msg(3,
    333333                            "If you really want verification for %s, please contact the devteam and offer an incentive.",
    334334                            biggiestruct.filename);
     
    336336                }
    337337                if (res) {
    338                     log_msg(0,
     338                    mr_msg(0,
    339339                            "afio: \"%s\": Corrupt biggie file, says libmondo-archive.c",
    340340                            biggiestruct.filename);
     
    405405    if (strstr(tarball_fname, ".lzo")
    406406        && strcmp(bkpinfo->zip_suffix, "lzo")) {
    407         log_msg(2, "OK, I'm going to start using lzop.");
     407        mr_msg(2, "OK, I'm going to start using lzop.");
    408408        mr_allocstr(bkpinfo->zip_exe, "lzop");
    409409        mr_allocstr(bkpinfo->zip_suffix, "lzo");
     
    413413    if (strstr(tarball_fname, ".gz")
    414414        && strcmp(bkpinfo->zip_suffix, "gz")) {
    415         log_msg(2, "OK, I'm going to start using gzip.");
     415        mr_msg(2, "OK, I'm going to start using gzip.");
    416416        strcpy(bkpinfo->zip_exe, "gzip");
    417417        strcpy(bkpinfo->zip_suffix, "gz");
     
    421421    if (strstr(tarball_fname, ".bz2")
    422422        && strcmp(bkpinfo->zip_suffix, "bz2")) {
    423         log_msg(2, "OK, I'm going to start using bzip2.");
     423        mr_msg(2, "OK, I'm going to start using bzip2.");
    424424        mr_allocstr(bkpinfo->zip_exe, "bzip2");
    425425        mr_allocstr(bkpinfo->zip_suffix, "bz2");
     
    441441                 bkpinfo->zip_exe, tarball_fname, outlog, outlog);
    442442    }
    443     log_msg(6, "command=%s", command);
     443    mr_msg(6, "command=%s", command);
    444444    paranoid_system(command);
    445445    mr_free(command);
     
    462462                        if (strchr(tmp, '/')) {
    463463                            if (!diffs) {
    464                                 log_msg(0, "'%s' - differences found",
     464                                mr_msg(0, "'%s' - differences found",
    465465                                        tarball_fname);
    466466                            }
    467                             log_msg(0, "star: /%s",
     467                            mr_msg(0, "star: /%s",
    468468                                    strip_afio_output_line(tmp));
    469469                            diffs++;
     
    472472                } else {
    473473                    if (!diffs) {
    474                         log_msg(0, "'%s' - differences found",
     474                        mr_msg(0, "'%s' - differences found",
    475475                                tarball_fname);
    476476                    }
    477                     log_msg(0, "afio: /%s", strip_afio_output_line(tmp));
     477                    mr_msg(0, "afio: /%s", strip_afio_output_line(tmp));
    478478                    diffs++;
    479479                }
     
    515515    assert_string_is_neither_NULL_nor_zerolength(tarball_fname);
    516516
    517     log_msg(1, "Verifying %s", tarball_fname);
     517    mr_msg(1, "Verifying %s", tarball_fname);
    518518    if (!does_file_exist(tarball_fname)) {
    519519        fatal_error("Cannot verify nonexistent afioball");
     
    575575                 "Afioball '%s' no longer matches your live filesystem",
    576576                 p);
    577         log_msg(0, tmp);
     577        mr_msg(0, tmp);
    578578        mr_free(tmp);
    579579        retval++;
     
    648648                                          &ctrl_chr);
    649649        if (ctrl_chr != BLK_STOP_AN_AFIO_OR_SLICE) {
    650             log_msg(2, "test_file = %s", test_file);
     650            mr_msg(2, "test_file = %s", test_file);
    651651            wrong_marker(BLK_STOP_AN_AFIO_OR_SLICE, ctrl_chr);
    652652        }
     
    666666            mr_asprintf(&tmp, "orig cksum=%s; curr cksum=%s", biggie_cksum,
    667667                     orig_cksum);
    668             log_msg(2, tmp);
     668            mr_msg(2, tmp);
    669669            mr_free(tmp);
    670670
     
    795795        fname = (char *) &res;
    796796    }
    797     log_msg(1, "All done with afioballs");
     797    mr_msg(1, "All done with afioballs");
    798798    close_progress_form();
    799799    mr_free(fname);
     
    867867    }
    868868    noof_biggiefiles = (long) size;
    869     log_msg(1, "noof_biggiefiles = %ld", noof_biggiefiles);
     869    mr_msg(1, "noof_biggiefiles = %ld", noof_biggiefiles);
    870870    open_progress_form(_("Verifying big files"), comment,
    871871                       _("Please wait. This may take some time."), "",
     
    956956                 "%s not found; assuming you backed up to CD; verifying CD...",
    957957                 fname);
    958         log_msg(2, tmp);
     958        mr_msg(2, tmp);
    959959        mr_free(tmp);
    960960
     
    995995        mr_free(command);
    996996    }
    997     log_msg(2, "OK, I've mounted the ISO/CD\n");
     997    mr_msg(2, "OK, I've mounted the ISO/CD\n");
    998998    mr_asprintf(&tmp, "%s/archives/NOT-THE-LAST", mountpoint);
    999999    if (!does_file_exist(tmp)) {
    1000         log_msg
     1000        mr_msg
    10011001            (2,
    10021002             "This is the last CD. I am therefore setting bkpinfo->verify_data to FALSE.");
     
    10331033        retval++;
    10341034    } else {
    1035         log_msg(2, "OK, I've unmounted the ISO file\n");
     1035        mr_msg(2, "OK, I've unmounted the ISO file\n");
    10361036    }
    10371037    mr_free(command);
     
    10451045        if (!bkpinfo->please_dont_eject
    10461046            && eject_device(bkpinfo->media_device)) {
    1047             log_msg(2, "Failed to eject CD-ROM drive");
     1047            mr_msg(2, "Failed to eject CD-ROM drive");
    10481048        }
    10491049    }
     
    10751075    assert(bkpinfo != NULL);
    10761076
    1077     log_msg(3, "verify_tape_backups --- starting");
     1077    mr_msg(3, "verify_tape_backups --- starting");
    10781078    log_to_screen(_("Verifying backups"));
    10791079    openin_tape(bkpinfo);
     
    10981098             (bkpinfo->use_star) ? "star" : "afio", MONDO_LOGFILE,
    10991099             changed_files_fname);
    1100     log_msg(2, "Running command to derive list of changed files");
    1101     log_msg(2, tmp);
     1100    mr_msg(2, "Running command to derive list of changed files");
     1101    mr_msg(2, tmp);
    11021102    if (system(tmp)) {
    11031103        if (does_file_exist(changed_files_fname)
     
    11261126                 "%ld files differed from live filesystem; type less %s or less %s to see",
    11271127                 diffs, changed_files_fname, "/tmp/changed.files");
    1128         log_msg(0, tmp);
     1128        mr_msg(0, tmp);
    11291129        mr_free(tmp);
    11301130
  • trunk/mondo/src/common/newt-specific.c

    r1081 r1086  
    199199        usleep(500000);
    200200        if (g_text_mode) {
    201             log_msg(2, "Closing evalcall form");
     201            mr_msg(2, "Closing evalcall form");
    202202            return;
    203203        }
     
    219219        }
    220220        if (g_current_progress == -999) {
    221             log_msg(2,
     221            mr_msg(2,
    222222                    "Trying to close the progress form when it ain't open!");
    223223            return;
     
    227227        sleep(1);
    228228        if (g_text_mode) {
    229             log_msg(2, "Closing progress form");
     229            mr_msg(2, "Closing progress form");
    230230            return;
    231231        }
     
    270270        set_signals(FALSE);     // link to external func
    271271        g_exiting = TRUE;
    272         log_msg(1, "%s - '%s'", fatalstr, error_string);
     272        mr_msg(1, "%s - '%s'", fatalstr, error_string);
    273273        printf("%s - %s\n", fatalstr, error_string);
    274274        if (getpid() == g_mastermind_pid) {
    275             log_msg(2, "mastermind %d is exiting", (int) getpid());
     275            mr_msg(2, "mastermind %d is exiting", (int) getpid());
    276276            kill(g_main_pid, SIGTERM);
    277277            finish(1);
     
    280280        if (getpid() != g_main_pid) {
    281281            if (g_mastermind_pid != 0 && getpid() != g_mastermind_pid) {
    282                 log_msg(2, "non-m/m %d is exiting", (int) getpid());
     282                mr_msg(2, "non-m/m %d is exiting", (int) getpid());
    283283                kill(g_main_pid, SIGTERM);
    284284                finish(1);
     
    286286        }
    287287
    288         log_msg(3, "OK, I think I'm the main PID.");
     288        mr_msg(3, "OK, I think I'm the main PID.");
    289289        if (already_exiting) {
    290             log_msg(3, "...I'm already exiting. Give me time, Julian!");
     290            mr_msg(3, "...I'm already exiting. Give me time, Julian!");
    291291            finish(1);
    292292        }
    293293
    294294        already_exiting = TRUE;
    295         log_msg(2, "I'm going to do some cleaning up now.");
     295        mr_msg(2, "I'm going to do some cleaning up now.");
    296296        paranoid_system("killall mindi 2> /dev/null");
    297297        kill_anything_like_this("/mondo/do-not");
     
    303303            chdir("/");
    304304            for (i = 0; i < 10 && run_program_and_log_output(tmp, 5); i++) {
    305                 log_msg(2, "Waiting for child processes to terminate");
     305                mr_msg(2, "Waiting for child processes to terminate");
    306306                sleep(1);
    307307                run_program_and_log_output(tmp, 5);
     
    323323
    324324        if (!g_text_mode) {
    325             log_msg(0, fatalstr);
    326             log_msg(0, error_string);
     325            mr_msg(0, fatalstr);
     326            mr_msg(0, error_string);
    327327            newtFinished();
    328328        }
     
    337337        register_pid(0, "mondo");   // finish() does this too, FYI
    338338        if (!g_main_pid) {
    339             log_msg(3, "FYI - g_main_pid is blank");
     339            mr_msg(3, "FYI - g_main_pid is blank");
    340340        }
    341341        finish(254);
     
    371371        if (!g_text_mode) {
    372372            if (does_file_exist("/THIS-IS-A-RAMDISK")) {
    373                 log_msg(1, "Calling newtFinished()");
     373                mr_msg(1, "Calling newtFinished()");
    374374                newtFinished();
    375375            } else {
    376                 log_msg(1, "Calling newtSuspend()");
     376                mr_msg(1, "Calling newtSuspend()");
    377377                newtSuspend();
    378378            }
     
    465465        va_start(args, fmt);
    466466        mr_asprintf(&output, fmt, args);
    467         log_msg(0, output);
     467        mr_msg(0, output);
    468468        if (strlen(output) > 80) {
    469469            output[80] = '\0';
     
    508508     mvaddstr_and_log_it(int y, int x, char *output) {
    509509        assert_string_is_neither_NULL_nor_zerolength(output);
    510         log_msg(0, output);
     510        mr_msg(0, output);
    511511        if (g_text_mode) {
    512512            printf("%s\n", output);
     
    541541        //  center_string (title, 80);
    542542        if (g_text_mode) {
    543             log_msg(0, title);
     543            mr_msg(0, title);
    544544        } else {
    545545            mr_asprintf(&tmp, title);
     
    553553        g_isoform_starttime = get_time();
    554554        if (g_text_mode) {
    555             log_msg(0, g_isoform_header_str);
     555            mr_msg(0, g_isoform_header_str);
    556556        } else {
    557557            g_isoform_header = newtLabel(1, 1, g_isoform_header_str);
     
    618618        mr_asprintf(&g_blurb_str_3, blurb2);
    619619        if (g_text_mode) {
    620             log_msg(0, blurb1);
    621             log_msg(0, blurb2);
    622             log_msg(0, blurb3);
     620            mr_msg(0, blurb1);
     621            mr_msg(0, blurb2);
     622            mr_msg(0, blurb3);
    623623        } else {
    624624            g_blurb1 = newtLabel(2, 1, blurb1);
     
    654654        assert_string_is_neither_NULL_nor_zerolength(prompt);
    655655
    656         log_msg(0, prompt);
     656        mr_msg(0, prompt);
    657657        if (g_text_mode) {
    658658            printf
     
    10541054        char *p;
    10551055
    1056 //  log_msg(1, "'%s' '%s' '%s'", blurb1, blurb2, blurb3);
     1056//  mr_msg(1, "'%s' '%s' '%s'", blurb1, blurb2, blurb3);
    10571057        if (!g_text_mode) {
    10581058            assert(blurb1 != NULL);
     
    10721072                         blurb1, blurb2, blurb3, g_current_progress,
    10731073                         g_maximum_progress);
    1074                 log_msg(0, tmp);
     1074                mr_msg(0, tmp);
    10751075                mr_free(tmp);
    10761076                g_current_progress = g_maximum_progress;
     
    11231123
    11241124            if (percentage > 100) {
    1125                 log_msg(2, _("percentage = %d"), percentage);
     1125                mr_msg(2, _("percentage = %d"), percentage);
    11261126            }
    11271127            mr_asprintf(&taskprogress,
     
    13401340        if (!(fin = fopen(source_file, "r"))) {
    13411341            log_OS_error(source_file);
    1342             log_msg(2, "Can't open %s; therefore, cannot popup list",
     1342            mr_msg(2, "Can't open %s; therefore, cannot popup list",
    13431343                    source_file);
    13441344            return (1);
    13451345        }
    1346         log_msg(2, "Loading %s", source_file);
     1346        mr_msg(2, "Loading %s", source_file);
    13471347        for (filelist->entries = 0; filelist->entries <= ARBITRARY_MAXIMUM;
    13481348             filelist->entries++) {
     
    14041404                           (void *) &dummy_fle,
    14051405                           sizeof(struct s_filelist_entry));
    1406                     log_msg(2, "Swapping %s and %s",
     1406                    mr_msg(2, "Swapping %s and %s",
    14071407                            filelist->el[i].filename,
    14081408                            filelist->el[i + 1].filename);
     
    14781478        assert_string_is_neither_NULL_nor_zerolength(source_file);
    14791479        if (g_text_mode) {
    1480             log_msg(2, "Text mode. Therefore, no popup list.");
     1480            mr_msg(2, "Text mode. Therefore, no popup list.");
    14811481            return;
    14821482        }
    1483         log_msg(2, "Examining file %s", source_file);
     1483        mr_msg(2, "Examining file %s", source_file);
    14841484
    14851485        lng = count_lines_in_file(source_file);
    14861486        if (lng < 1) {
    1487             log_msg(2, "No lines in file. Therefore, no popup list.");
     1487            mr_msg(2, "No lines in file. Therefore, no popup list.");
    14881488            return;
    14891489        } else if (lng >= ARBITRARY_MAXIMUM) {
    1490             log_msg(2, "Too many files differ for me to list.");
     1490            mr_msg(2, "Too many files differ for me to list.");
    14911491            return;
    14921492        }
     
    14981498
    14991499        if (load_filelist_into_array(filelist, source_file)) {
    1500             log_msg(2, "Can't open %s; therefore, cannot popup list",
     1500            mr_msg(2, "Can't open %s; therefore, cannot popup list",
    15011501                    source_file);
    15021502            return;
    15031503        }
    1504         log_msg(2, "%d files loaded into filelist array",
     1504        mr_msg(2, "%d files loaded into filelist array",
    15051505                filelist->entries);
    15061506        for (i = 0; i < filelist->entries; i++) {
Note: See TracChangeset for help on using the changeset viewer.