Commit 4a1ee627 authored by acpaquette's avatar acpaquette
Browse files

Fixed AppendAndLog function uses

parent fe7416c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ namespace Isis {
    // Send the Output to the log area
    Pvl statsPvl = camStats.toPvl();
    for (int i = 0; i < statsPvl.groups(); i++) {
      Application::AppendAndLog(statsPvl.group(i));
      Application::AppendAndLog(statsPvl.group(i), log);
    }

    if(ui.WasEntered("TO")) {
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ namespace Isis{
    }
    // Add mapping to print.prt
    PvlGroup mapping = proj->Mapping();
    Application::AppendAndLog(mapping);
    Application::AppendAndLog(mapping, log);

    delete proj;
    proj = NULL;