Changeset 5830


Ignore:
Timestamp:
Aug 21, 2015, 12:22:26 PM (9 years ago)
Author:
mmh
Message:

remove debugging puts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/uq/lang/tcl/scripts/task.tcl

    r5828 r5830  
    8080# ----------------------------------------------------------------------
    8181itcl::body Rappture::Task::constructor {xmlobj installdir args} {
    82     puts "Task Init"
    8382    if {![Rappture::library isvalid $xmlobj]} {
    8483        error "bad value \"$xmlobj\": should be Rappture::Library"
     
    121120
    122121itcl::body Rappture::Task::get_uq {args} {
    123     puts "Task::get_uq $args"
    124122    foreach {path val} $args {
    125123        if {$path == "-uq_type"} {
     
    158156itcl::body Rappture::Task::run {args} {
    159157    global env errorInfo
    160     puts "task run $args"
     158
    161159    #
    162160    # Make sure that we save the proper application name.
     
    232230        regsub -all @tool $cmd $_installdir cmd
    233231        set cmd [string trimleft $cmd " "]
    234         puts "1. cmd=$cmd"
    235232
    236233        if { $cmd == "" } {
     
    263260        $_xmlobj put tool.execute $cmd
    264261
    265         puts "cmd=$cmd"
    266262        # starting job...
    267263        set _lastrun ""
     
    422418
    423419            set status [catch {Rappture::library $file} result]
    424             puts "STATUS=$status"
    425420            if {$status == 0} {
    426421                # add cputime info to run.xml file
     
    462457# ----------------------------------------------------------------------
    463458itcl::body Rappture::Task::_build_submit_cmd {cmd tfile params_file} {
    464     puts "BSC $cmd $tfile $params_file"
    465 
    466459    set quote_next 0
    467460    set newcmd "submit --progress submit --runName=puq -l -i @:$tfile -d $params_file"
     
    485478        append newcmd " " $arg
    486479    }
    487     puts "BSC2: $newcmd"
    488480    regsub -all @driver $newcmd $tfile newcmd
    489     puts "BSC returning: $newcmd"
    490481    return $newcmd
    491482}
     
    657648itcl::body Rappture::Task::_get_params {varlist uq_type uq_args} {
    658649    set pid [pid]
    659     puts "get_params.py $pid $varlist $uq_type $uq_args"
     650    # puts "get_params.py $pid $varlist $uq_type $uq_args"
    660651    if {[catch {exec get_params.py $pid $varlist $uq_type $uq_args}]} {
    661652        set fp [open "uq_debug.err" r]
Note: See TracChangeset for help on using the changeset viewer.