IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 20, 2008, 11:13:28 AM (18 years ago)
Author:
jhoblitt
Message:

server/client split

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server/Config.pm

    r10628 r17072  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: Config.pm,v 1.2 2006-12-12 00:06:27 jhoblitt Exp $
     3# $Id: Config.pm,v 1.3 2008-03-20 21:10:57 jhoblitt Exp $
    44
    55package Nebulous::Server::Config;
     
    1212use base qw( Class::Accessor::Fast );
    1313
    14 use Nebulous::Util qw( %LEVELS );
     14use Log::Log4perl qw( :levels );
    1515use Params::Validate qw( validate SCALAR );
     16
     17our %LEVELS = (
     18    off     => $OFF,
     19    fatal   => $FATAL,
     20    error   => $ERROR,
     21    warn    => $WARN,
     22    info    => $INFO,
     23    debug   => $DEBUG,
     24    all     => $ALL,
     25);
    1626
    1727my $new_validate = {
Note: See TracChangeset for help on using the changeset viewer.