Nothing
#
# Logs
#
# moved to a separate file
#
log.info = function(...) {
cat(paste(date(), getMark(), ... , "\n", sep=""));
}
log.warning = function(...) {
cat(paste(date(), getMark(), "*** WARNING ***\n", sep=""));
cat(paste(date(), getMark(), "\n", sep=""));
cat(paste(date(), getMark(), " ", ... , "\n", sep=""));
cat(paste(date(), getMark(), "\n", sep=""));
if (.stop.on.warnings) {
stop();
}
}
log.error = function(...) {
cat(paste(date(), getMark(), "*** ERROR ***\n", sep=""));
cat(paste(date(), getMark(), "\n", sep=""));
cat(paste(date(), getMark(), " ", ... , "\n", sep=""));
cat(paste(date(), getMark(), "\n", sep=""));
#stop();
}
getMark = function() {
" [AEHTS] ";
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.