From fe5769156cec1e0da4c44d4e8828a646090fecde Mon Sep 17 00:00:00 2001 From: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> Date: Tue, 7 Sep 2021 01:08:29 +1000 Subject: [PATCH] correctly print both db files (#100) --- apps/simplex-chat/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/simplex-chat/Main.hs b/apps/simplex-chat/Main.hs index 952f77fd1..839bb873e 100644 --- a/apps/simplex-chat/Main.hs +++ b/apps/simplex-chat/Main.hs @@ -21,7 +21,7 @@ welcomeGetOpts = do appDir <- getAppUserDataDirectory "simplex" opts@ChatOpts {dbFile} <- getChatOpts appDir putStrLn "SimpleX chat prototype v0.3.1" - putStrLn $ "db: " <> dbFile + putStrLn $ "db: " <> dbFile <> ".chat.db, " <> dbFile <> ".agent.db" putStrLn "type \"/help\" or \"/h\" for usage info" pure opts