in reply to Re^2: Application-wide configuration
in thread Application-wide configuration

In the code above you need the get method because the singleton returns an instance of itself, not of the configuration object.

So usage becomes:

my $config = Singleton::Config->instance(); my $random = $config->get( "block", "setting" );
Steve
--