File indexing completed on 2024-05-19 05:49:17

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nicolas Ternisien <nicolas.ternisien@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "systemConfiguration.h"
0008 
0009 SystemConfiguration::SystemConfiguration()
0010     : GenericLogModeConfiguration(QStringLiteral(SYSTEM_LOG_MODE_ID),
0011                                   QStringList() << QStringLiteral("/var/log/syslog"),
0012                                   QList<int>() << Globals::INFORMATION_LOG_LEVEL_ID)
0013 {
0014     /*
0015         <default>/var/log/messages,/var/log/syslog,/var/log/debug</default>
0016         <default>2,2,1</default>
0017         */
0018 }
0019 
0020 #include "moc_systemConfiguration.cpp"