Skip to content

Instantly share code, notes, and snippets.

@steverobbins
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steverobbins/374f4fea3fcf481b670b to your computer and use it in GitHub Desktop.
Save steverobbins/374f4fea3fcf481b670b to your computer and use it in GitHub Desktop.
<?php
final class Mage
{
// ...
public static function dispatchEvent($name, array $data = array())
{
$e = new Exception();
Mage::log(
$name . ': ' . implode(', ', array_keys($data)) . "\n"
. $e->getTraceAsString(),
null,
'event.log',
true
);
// ...
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment