Просмотр исходного кода

Remove maxLogLines config option

It's no longer used.

For owncloud/docs#1365
Christian Kamm 6 лет назад
Родитель
Сommit
18e1098e38
3 измененных файлов с 0 добавлено и 20 удалено
  1. 0 2
      doc/conffile.rst
  2. 0 14
      src/libsync/configfile.cpp
  3. 0 4
      src/libsync/configfile.h

+ 0 - 2
doc/conffile.rst

@@ -51,8 +51,6 @@ Some interesting values that can be set on the configuration file are:
 +---------------------------------+------------------------+--------------------------------------------------------------------------------------------------------+
 | ``promptDeleteAllFiles``        | ``true``               | If a UI prompt should ask for confirmation if it was detected that all files and folders were deleted. |
 +---------------------------------+------------------------+--------------------------------------------------------------------------------------------------------+
-| ``maxLogLines``                 | ``20000``              | Specifies the maximum number of log lines displayed in the log window.                                 |
-+---------------------------------+------------------------+--------------------------------------------------------------------------------------------------------+
 | ``timeout``                     | ``300``                | The timeout for network connections in seconds.                                                        |
 +---------------------------------+------------------------+--------------------------------------------------------------------------------------------------------+
 | ``moveToTrash``                 | ``false``              | If non-locally deleted files should be moved to trash instead of deleting them completely.             |

+ 0 - 14
src/libsync/configfile.cpp

@@ -101,7 +101,6 @@ static const char useNewBigFolderSizeLimitC[] = "useNewBigFolderSizeLimit";
 static const char confirmExternalStorageC[] = "confirmExternalStorage";
 static const char moveToTrashC[] = "moveToTrash";
 
-static const char maxLogLinesC[] = "Logging/maxLogLines";
 
 const char certPath[] = "http_certificatePath";
 const char certPasswd[] = "http_certificatePasswd";
@@ -673,19 +672,6 @@ void ConfigFile::setUpdateChannel(const QString &channel)
     settings.setValue(QLatin1String(updateChannelC), channel);
 }
 
-int ConfigFile::maxLogLines() const
-{
-    QSettings settings(configFile(), QSettings::IniFormat);
-    return settings.value(QLatin1String(maxLogLinesC), DEFAULT_MAX_LOG_LINES).toInt();
-}
-
-void ConfigFile::setMaxLogLines(int lines)
-{
-    QSettings settings(configFile(), QSettings::IniFormat);
-    settings.setValue(QLatin1String(maxLogLinesC), lines);
-    settings.sync();
-}
-
 void ConfigFile::setProxyType(int proxyType,
     const QString &host,
     int port, bool needsAuth,

+ 0 - 4
src/libsync/configfile.h

@@ -65,10 +65,6 @@ public:
 
     bool passwordStorageAllowed(const QString &connection = QString());
 
-    // max count of lines in the log window
-    int maxLogLines() const;
-    void setMaxLogLines(int);
-
     /* Server poll interval in milliseconds */
     std::chrono::milliseconds remotePollInterval(const QString &connection = QString()) const;
     /* Set poll interval. Value in milliseconds has to be larger than 5000 */