Ignore:
Timestamp:
Feb 26, 2015, 2:30:35 PM (9 years ago)
Author:
Bruno Cornec
Message:
  • Adds more logging to call_program_and_get_last_line_of_output
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo/src/common/libmondo-fork.c

    r3292 r3349  
    5050
    5151    assert_string_is_neither_NULL_nor_zerolength(call);
     52    log_msg(5, "cpaglloo called with '%s'", call);
    5253    if ((fin = popen(call, "r"))) {
    5354        while (!feof(fin)) {
     
    5556            if (strlen(tmp) > 1) {
    5657                strcpy(result, tmp);
     58                log_msg(7, "result = '%s'", result);
    5759            }
    5860            mr_free(tmp);
     
    6365    }
    6466    strip_spaces(result);
     67    log_msg(5, "cpaglloo returns '%s'", result);
    6568    return(result);
    6669}
Note: See TracChangeset for help on using the changeset viewer.