Program Repair Shop 24

Overencapsulation

SET_DEBUG( $bool )

Turn debugging on or off. If set the built-in implementation of observer_log() will issue a warn at appropriate times during the process.
        my ( $DEBUG );
        sub DEBUG     { return $DEBUG; }
        sub SET_DEBUG { $DEBUG = $_[0] }
        To enable debugging, set $Class::Observable::DEBUG to a true value

continued...