R/functionsDebugtexts.R

Defines functions cat.short cat.call

cat.call <- function(caller,description = '', debugmode = TRUE){
    
    if(debugmode){
        cat("\r\n\r\n") 
        cat("---------------------------------------------------------------------------\r\n")
        cat("Method called: ", caller, "\r\n")
        cat("\t\t description ", description, "\r\n")
        cat("---------------------------------------------------------------------------\r\n\r\n")
         
    } 
     
}


cat.short <- function(description = '', debugmode = TRUE){
    
    if(debugmode){ 
        cat("\t\t description ", description, "\r\n") 
    } 
    
}
davidmacro/frog2features documentation built on Oct. 27, 2021, 12:17 a.m.