IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39539


Ignore:
Timestamp:
Apr 19, 2016, 1:04:13 PM (10 years ago)
Author:
mhuber
Message:

adding timestamps to summitcopy+dsget logs

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/DataStore/scripts/dsget

    r26291 r39539  
    5353    -exitval => 3,
    5454) unless defined $uri and defined $filename;
     55
     56my $date = `date`;
     57print "starting dsget $date";
    5558
    5659# XXX EAM : should not need parse_neb_key, but how to handle case
     
    138141my $tmpfilename = $tmp->filename;
    139142print "downloading file to $tmpfilename\n";
     143$date = `date`;
     144print "downloading starting  $date";
    140145
    141146# request the file from the remote data store server (save in tmpfilename)
     
    158163# this can't cross a file system boundry so we can assume that a move will
    159164# always be a rename operation instead of a copy and delete.
     165
     166$date = `date`;
     167print "start copying file into nebulous  $date";
    160168
    161169my $neb;
     
    233241}
    234242
     243$date = `date`;
     244print "finished dsget $date";
     245
    235246__END__
    236247
  • trunk/ippScripts/scripts/summit_copy.pl

    r31142 r39539  
    1919my $host = hostname();
    2020print "\n\n";
    21 print "Starting script $0 on $host\n\n";
     21#print "Starting script $0 on $host\n\n";
     22my $date = `date`;
     23print "Starting script $0 on $host at $date";
     24
    2225
    2326# Parse the command-line arguments
     
    109112my ($new_bytes, $new_md5) = check_instances($filename, $nebulous, $compress);
    110113
     114$date = `date`;
     115print "starting pztool instances checksum  $date";
     116
    111117# command to update database
    112118$command  = "$pztool -copydone";
     
    138144    print "skipping command: $command\n";
    139145}
     146
     147$date = `date`;
     148print "finished  $date\n";
     149
    140150
    141151sub get_file_params
Note: See TracChangeset for help on using the changeset viewer.