NAME
Print - useful utility functions for general print to screeen and print to file functionality.
ABSTRACT
Utility library providing useful utility functions for general Print functionality.
print_with_lock
Selects printing to standard out or to log with locking based on whether a suitable log file is defined.
print_file_lock
Prints out a specified message to a specified file with locking in an attempt to prevent competing threads or forks from stepping on each others toes when writing to the file.
print_lock
Prints out a specified message with locking in an attempt to prevent competing threads or forks from stepping on each others toes when printing to stdout.
print_result
Takes an object (user, group, site, etc) and prints out it's Message value, appending a new line. Also looks at the verbosity level and if greater than or equal to 1 will print extra information extracted from the object's Response object. At the moment, won't print if log is defined, as the prints to log happen elsewhere. TODO tidy that up.
dateTime
Returns a current date time string, which is useful for log timestamps.