c0165_v

Log reference:

    loading [Config]:  ./tests/functests/upconfig.yml
    Main config:
                 Version -> 1.0.0
                  RefDir -> ./tests/functests
                 WorkDir -> cwd
              AbsWorkDir -> /up_project/up
                TaskFile -> c0165
                 Verbose -> v
              ModuleName -> self
               ShellType -> /bin/sh
           MaxCallLayers -> 8
                 Timeout -> 3600000
     MaxModuelCallLayers -> 256
               EntryTask -> task
      ModRepoUsernameRef -> 
      ModRepoPasswordRef -> 
    work dir: /up_project/up
    -exec task: task
    loading [Task]:  ./tests/functests/c0165
    module: [self], instance id: [dev], exec profile: []
    Task1: [task ==> task:  ]
    -Step1:
    ~SubStep1: [print:  ]
    address:
      suburb:
        name: sydney CBD
        postcode: 2000
      school: SG
    
    ~SubStep2: [print: print string representation of obj ]
    map[address:map[school:SG suburb:map[name:sydney CBD postcode:2000]]]
    ~SubStep3: [printObj: print object ]
    object:
     this_is_an_obj: (*map[interface {}]interface {})({
      "address": {
        "suburb": {
          "name": "sydney CBD",
          "postcode": 2000
        },
        "school": "SG"
      }
    })
    
    ~SubStep4: [print: object to json text ]
    {"address":{"school":"SG","suburb":{"name":"sydney CBD","postcode":2000}}}
    ~SubStep5: [print: convert yml string to obj in print ]
    address:
      school: SG
      suburb:
        name: sydney CBD
        postcode: 2000
    
    ~SubStep6: [print: print this_is_another_obj ]
    map[address:map[school:SG suburb:map[name:sydney CBD postcode:2000]]]
    ~SubStep7: [print: object to json text then to obj using ymlToObj
    yml is a superset of json, so ymlToObj works for json
     ]
    map[address:map[school:SG suburb:map[name:sydney CBD postcode:2000]]]
    ~SubStep8: [print: object to json text
    then to obj using ymlToObj
    then to yml
     ]
    address:
      school: SG
      suburb:
        name: sydney CBD
        postcode: 2000
    
    
Logs with different verbose level
References