Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gnucash(1) [debian man page]

GNUCASH(1)							      2.4.10								GNUCASH(1)

NAME
gnucash - personal finance manager SYNOPSIS
gnucash [options] [ accounts.gnc ] DESCRIPTION
GnuCash is a personal accounting package that allows you to record and track income, expenses, assets, and investments. It supports recon- ciliation, has substantial reporting capabilities, and is extensible using guile. It can import QIF data from Quicken(TM) and many other commercial accounting packages. It uses GTK+ and GNOME to provide an attractive user interface, and has extensive online help. OPTIONS
--version Show GnuCash version --help Show this help message --debug Enable debugging mode: increasing logging to provide deep detail. --extra Enable extra/development/debugging features. --log Log level overrides, of the form "log.ger.path={debug,info,warn,crit,error}" --logto File to log into; defaults to "/tmp/gnucash.trace"; can be "stderr" or "stdout". --nofile Do not load the last file opened --add-price-quotes FILE Add price quotes to the given data file --namespace=REGEXP Regular expression determining which namespace commodities will be retrieved. FILES
~/.gnucash/config.auto Automatically generated per-user configuration file. DO NOT EDIT MANUALLY! ENVIRONMENT
GNC_DEBUG Enable debugging output. This allows you to turn on the debugging earlier in the startup process than you can with --debug. GUILE_LOAD_PATH An override for the GnuCash scheme load path. You shouldn't need to alter this. For more information see the README file. GNC_MODULE_PATH An override for the GnuCash scheme load path for Gnucash modules. You shouldn't need to alter this. For more information see the README file. BUGS
Please report any bugs using the bug reporting form on the GnuCash web site. SEE ALSO
GnuCash has extensive on-line help available from the "help" menu. Additional information and the latest version is available at the web site: http://www.gnucash.org AUTHOR
Robert Merkel <rgmerk@mira.net> wrote this manpage. GnuCash was written by Robin Clark, Linas Vepstas, and a cast of thousands. Version January 2013 GNUCASH(1)

Check Out this Related Man Page

Mojo::Log(3pm)						User Contributed Perl Documentation					    Mojo::Log(3pm)

NAME
Mojo::Log - Simple logger SYNOPSIS
use Mojo::Log; # Log to STDERR my $log = Mojo::Log->new; # Customize log file location and minimum log level my $log = Mojo::Log->new(path => '/var/log/mojo.log', level => 'warn'); # Log messages $log->debug("Why isn't this working?"); $log->info("FYI: it happened again"); $log->warn("This might be a problem"); $log->error("Garden variety error"); $log->fatal("Boom!"); DESCRIPTION
Mojo::Log is a simple logger for Mojo projects. EVENTS
Mojo::Log can emit the following events. "message" $log->on(message => sub { my ($log, $level, @messages) = @_; ... }); Emitted when a new message gets logged. $log->unsubscribe('message'); $log->on(message => sub { my ($log, $level, @messages) = @_; say "$level: ", @messages; }); ATTRIBUTES
Mojo::Log implements the following attributes. "handle" my $handle = $log->handle; $log = $log->handle(IO::Handle->new); Log file handle used by default "message" event, defaults to opening "path" or "STDERR". "level" my $level = $log->level; $log = $log->level('debug'); Active log level, defaults to the value of the "MOJO_LOG_LEVEL" environment variable or "debug". These levels are currently available: "debug" "info" "warn" "error" "fatal" "path" my $path = $log->path $log = $log->path('/var/log/mojo.log'); Log file path used by "handle". METHODS
Mojo::Log inherits all methods from Mojo::EventEmitter and implements the following new ones. "new" my $log = Mojo::Log->new; Construct a new Mojo::Log object and subscribe to "message" event with default logger. "debug" $log = $log->debug('You screwed up, but that is ok'); Log debug message. "error" $log = $log->error('You really screwed up this time'); Log error message. "fatal" $log = $log->fatal('Its over...'); Log fatal message. "format" my $message = $log->format('debug', 'Hi there!'); my $message = $log->format('debug', 'Hi', 'there!'); Format log message. "info" $log = $log->info('You are bad, but you prolly know already'); Log info message. "is_level" my $success = $log->is_level('debug'); Check log level. "is_debug" my $success = $log->is_debug; Check for debug log level. "is_error" my $success = $log->is_error; Check for error log level. "is_fatal" my $success = $log->is_fatal; Check for fatal log level. "is_info" my $success = $log->is_info; Check for info log level. "is_warn" my $success = $log->is_warn; Check for warn log level. "log" $log = $log->log(debug => 'This should work'); Emit "message" event. "warn" $log = $log->warn('Dont do that Dave...'); Log warn message. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Log(3pm)
Man Page