Skip to content

Instantly share code, notes, and snippets.

View karlazz's full-sized avatar

Karla Leibowitz karlazz

  • herself
  • Walnut Creek, CA
View GitHub Profile
@karlazz
karlazz / gist:7168bbb8360ff1cfece8dfc55b206f14
Created September 2, 2020 21:42
haruki murakami deep world
What we see before us is just one tiny part of the world.  We get into the habit of thinking, this is the world, but that's not true at all.  The real world is a much darker and deeper place than this, and much of it is occupied by jellyfish and things.  -- Haruki Murakami
//* add a trace file
$upload_dir = wp_upload_dir();
define('TRACEFILE', $upload_dir['basedir'] . '/trace.log');
function trace($log) {
$prefix = current_time( 'mysql' ) . ": " ;
$suffix = "\n" ;
if ( is_array( $log ) || is_object( $log ) ) {
error_log( $prefix, 3, TRACEFILE);
error_log( print_r( $log, true ) , 3, TRACEFILE );