diff --git a/src/windows/Settings/Settings.tsx b/src/windows/Settings/Settings.tsx index ad09f9f9a..d97e14e7e 100644 --- a/src/windows/Settings/Settings.tsx +++ b/src/windows/Settings/Settings.tsx @@ -218,8 +218,8 @@ export default function Settings({ navigation }: ISettingsProps) { // Copy lnd log const copyLndLog = async () => { try { - await NativeModules.LndMobileTools.copyLndLog(); - toast("Copied lnd log file.", undefined, "warning"); + const filePath = await NativeModules.LndMobileTools.copyLndLog(); + toast("Copied lnd log file to: " + filePath, undefined, "warning"); } catch (e) { console.error(e); toast("Error copying lnd log file.", undefined, "danger"); @@ -1146,7 +1146,6 @@ Do you wish to proceed?`; Copy lnd log to local storage - Reached from /sdcard/BlixtWallet }