diff --git a/apps/ntf-server/Main.hs b/apps/ntf-server/Main.hs index 20d2aa37a..cb54ca2e9 100644 --- a/apps/ntf-server/Main.hs +++ b/apps/ntf-server/Main.hs @@ -51,7 +51,7 @@ ntfServerCLIConfig = \# and restoring it when the server is started.\n\ \# Log is compacted on start (deleted objects are removed).\n\ \# The messages are not logged.\n" - <> ("enable: " <> (if enableStoreLog then "on" else "off # on") <> "\n\n") + <> ("enable: " <> (if enableStoreLog then "on" else "off") <> "\n\n") <> "[TRANSPORT]\n\ \port: " <> defaultServerPort diff --git a/apps/smp-server/Main.hs b/apps/smp-server/Main.hs index 6d8d41418..2e6661802 100644 --- a/apps/smp-server/Main.hs +++ b/apps/smp-server/Main.hs @@ -59,10 +59,10 @@ smpServerCLIConfig = \# This option enables saving memory to append only log,\n\ \# and restoring it when the server is started.\n\ \# Log is compacted on start (deleted objects are removed).\n" - <> ("enable: " <> (if enableStoreLog then "on" else "off # on") <> "\n") + <> ("enable: " <> (if enableStoreLog then "on" else "off") <> "\n") <> "# The messages are optionally saved and restored when the server restarts,\n\ \# they are deleted after restarting.\n" - <> ("restore_messages: " <> (if enableStoreLog then "on" else "off # on") <> "\n\n") + <> ("restore_messages: " <> (if enableStoreLog then "on" else "off") <> "\n\n") <> "[TRANSPORT]\n" <> ("port: " <> defaultServerPort <> "\n") <> "websockets: off\n\n"