12:57:33 hi 13:05:59 how to output on qml   if daemon is not starting for any reason 13:06:22 console.log (".....") 13:06:57 ammml: which OS are you using? 13:07:46 android 13:08:23 you can print stuff with console.log 13:08:31 also make sure to increase the log level in settings -> log 13:10:06 on dameonmanager "arguments <<--log-level 4>>" 13:11:17 how to c on screen this from the begining 13:12:41 c? 13:12:51 see 13:15:17 malinero: did you ever try getting a local node working on androdi? 13:15:21 android 13:15:53 on termux local node works 13:16:51 im trying local node to start without intervention from user 13:20:59 I understand what you are trying to do but I can't help 13:34:55 Not a GUI problem ammml,ofrnxmrcan help with android-termux-node https://github.com/nahuhh/android-termux-monero-node 13:35:16 they want that the gui starts monerod on android 13:35:22 like on desktop 13:36:38 but yes it's probably better to let termux handle it and only connect to it from the GUI 13:38:05 ah sorry i didn't read fully 13:40:30 how gui can output daemon output 13:41:11 may i ask what android device you are using? 13:41:21 redmi 13:41:44 "arguments <<--log-level 4>>"  to have it on screen without need to click node etc 13:45:49 monero-gui is a desktop wallet first, i have never tested the monero-gui in android myself and this sounds like a bug report? 13:46:22 it's not a bug report 13:46:29 we don't support local node on android 13:46:44 if someone wants to add it fine but it's not officially supported yet 13:47:01 ah ok thanks, then using termux local node with logfiles is fine 13:55:43 is this the right qml 13:55:46 "arguments << "--start-mining" << currentWallet.address;" 13:56:09 i don't know what this is supposed to be 13:56:57 start mining directly from monerod 13:56:57 this doesn't look like valid qml to me 13:57:26 arguments << "--bootstrap-daemon-address" << bootstrapNodeAddress; 13:57:31 this is valid 13:57:55 this isn't QML 13:58:07 that's C++ 13:58:14 sorry really 13:58:21 is on dameonmanager.cpp 13:58:34 yes that's C++, as seen by the .cpp extension 13:58:42 QML is in .qml files 13:58:50 but this must work 13:59:34 no 13:59:41 why? 13:59:42 you can't mix C++ and QML 14:00:31 currentWallet.address is from QML, you can't simply add that to C++ code 14:00:51 here is happening 14:00:52 arguments << "--bootstrap-daemon-address" << bootstrapNodeAddress; 14:01:27 yes because bootstrapNodeAddress is valid variable 14:01:39 bool DaemonManager::start(const QString &flags, NetworkType::Type nettype, const QString &dataDir, const QString &bootstrapNodeAddress, bool noSync /* = false*/, bool pruneBlockchain /* = false*/) 14:01:46 see bootstrapNodeAddress is allowed here 14:02:12 how to add this var currentWallet.address 14:04:02 why not try to hardcode the address first and see if it works? 14:05:07 it works hardcoded 14:05:16 you have to edit the function parameter for start and update all occurrences where start is called from qml code 14:06:27 bool DaemonManager::start(const QString &flags 14:06:32 this one 14:06:46 yes 14:07:27 here DaemonManager.h 14:10:25 yes 14:10:45 and every occurrence where start it called from QML