Skip to content
Ming Xie edited this page Jun 23, 2016 · 4 revisions

Read the DEBUG logging level.

By default, Celluloid no longer shows the DEBUG logging level.

To see those messages, before you run require 'celluloid/current' ... do this:

require 'celluloid/debug'
require 'celluloid/current'

Or, just set this:

$CELLULOID_DEBUG = true

Read stack dumps.

You can get a stack dump this way:

Celluloid.stack_dump
Clone this wiki locally