mruz / base-app

The base application in PhalconPHP
63 stars 19 forks source link

Fatal error: Class 'Phalcon\Debug\Dump' not found in /app/Bootstrap.php on line 470 #21

Closed jcastilloa closed 10 years ago

jcastilloa commented 10 years ago

Hi, in first, thank you for your hard work with phalcon.

I'm receiving this error after signup:

Fatal error: Class 'Phalcon\Debug\Dump' not found in /app/Bootstrap.php on line 470

In other hand, $logger->log($message); appears have two params, $type is missing.

mruz commented 10 years ago

I dropped Baseapp\Library\Debug to Phalcon\Debug\Dump (but this exists only in the 2.0.0 branch). If you're using Phalcon 1.3.0, you can copy from base-app 1.3 library/Debug.php and update Bootstrap file.

The doc/api/Phalcon_Logger says it is unnecessary.

jcastilloa commented 10 years ago

Now is working fine, thank you.