diff options
author | Oliver Tappe | 2008-04-07 21:56:26 +0200 |
---|---|---|
committer | Oliver Tappe | 2008-04-07 21:56:26 +0200 |
commit | 419b81a499c8c9e91bddb1d7f4cad412fa039b47 (patch) | |
tree | a8126b672914a80cd6721dd884329ab2ef9a33b2 /config-db/slxconfig-demuxer | |
parent | * on behalf of Michael: splashy.stop now tries to remove itself during execution (diff) | |
download | core-419b81a499c8c9e91bddb1d7f4cad412fa039b47.tar.gz core-419b81a499c8c9e91bddb1d7f4cad412fa039b47.tar.xz core-419b81a499c8c9e91bddb1d7f4cad412fa039b47.zip |
* renamed --verbose-level to --log-level to make it more separate from --verbose.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1729 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/slxconfig-demuxer')
-rwxr-xr-x | config-db/slxconfig-demuxer | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer index f6592b88..a0c64ff9 100755 --- a/config-db/slxconfig-demuxer +++ b/config-db/slxconfig-demuxer @@ -310,7 +310,7 @@ sub writeAttributesToFile # will never again try to fiddle with machine-setup directly the # file-system. From now on the DB is the keeper of that info. spitFile($fileName, $content); - if ($openslxConfig{'verbose-level'} > 2) { + if ($openslxConfig{'log-level'} > 2) { vlog(0, "--- START OF $fileName ---"); vlog(0, $content); vlog(0, "--- END OF $fileName --- "); @@ -695,7 +695,7 @@ sub writePluginConfigurationsForSystem } my $fileName = "$pluginConfPath/${pluginName}.conf"; spitFile($fileName, $content); - if ($openslxConfig{'verbose-level'} > 2) { + if ($openslxConfig{'log-level'} > 2) { vlog(0, "--- START OF $fileName ---"); vlog(0, $content); vlog(0, "--- END OF $fileName --- "); @@ -958,11 +958,11 @@ which can be used to overrule the OpenSLX settings: --db-spec=<string> full DBI-specification of database --db-type=<string> type of database to connect to --locale=<string> locale to use for translations + --log-level=<int> level of logging verbosity (0-3) --logfile=<string> file to write logging output to --private-path=<string> path to private data --public-path=<string> path to public (client-accesible) data --temp-path=<string> path to temporary data - --verbose-level=<int> level of logging verbosity (0-3) Please refer to the C<slxsettings>-manpage for a more detailed description of these options. |