%3 ::xotcl::Object ::xotcl::Object ::xo::db::sql::acs_log ::xo::db::sql::acs_log → debug → error → notice → warn ::xo::db::sql::acs_log->::xotcl::Object

Class ::xo::db::sql::acs_log

::xo::db::sql::acs_log[i] create ...

Class Relations

  • class: ::xo::db::Class[i]
  • superclass: ::xotcl::Object[i]
::xo::db::Class create ::xo::db::sql::acs_log \
     -superclass ::xotcl::Object

Methods (to be applied on the object)

  • debug (scripted, public)

     xo::db::sql::acs_log[i] debug [ -dbn dbn ] -log_key log_key  \
        -message message 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -log_key
    (required)
    -message
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_log proc debug xo::db::sql::acs_log proc debug xo::db::sql::acs_log proc debug->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {LOG_KEY {}} {MESSAGE {}}
    foreach var [list LOG_KEY MESSAGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_log__debug($_LOG_KEY$_MESSAGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • error (scripted, public)

     xo::db::sql::acs_log[i] error [ -dbn dbn ] -log_key log_key  \
        -message message 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -log_key
    (required)
    -message
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_log proc error xo::db::sql::acs_log proc error xo::db::sql::acs_log proc error->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {LOG_KEY {}} {MESSAGE {}}
    foreach var [list LOG_KEY MESSAGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_log__error($_LOG_KEY$_MESSAGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • notice (scripted, public)

     xo::db::sql::acs_log[i] notice [ -dbn dbn ] -log_key log_key  \
        -message message 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -log_key
    (required)
    -message
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_log proc notice xo::db::sql::acs_log proc notice xo::db::sql::acs_log proc notice->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {LOG_KEY {}} {MESSAGE {}}
    foreach var [list LOG_KEY MESSAGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_log__notice($_LOG_KEY$_MESSAGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • warn (scripted, public)

     xo::db::sql::acs_log[i] warn [ -dbn dbn ] -log_key log_key  \
        -message message 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -log_key
    (required)
    -message
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_log proc warn xo::db::sql::acs_log proc warn xo::db::sql::acs_log proc warn->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {LOG_KEY {}} {MESSAGE {}}
    foreach var [list LOG_KEY MESSAGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_log__warn($_LOG_KEY$_MESSAGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }