Warning, /network/kio-gdrive/HACKING is written in an unsupported language. File is not indexed.
0001 Install to custom prefix 0002 ========================= 0003 0004 You can install kio-gdrive to your preferred installation prefix, 0005 as long as kdeinit5 has been installed in the same prefix. 0006 0007 Locate Debug Output 0008 =================== 0009 0010 You will not see the slave's output in the terminal where you started e.g. Dolphin. 0011 On systemd distros the output will go in the journalctl (assuming Qt built with the -journald option). 0012 A quick way to locate the relevant logs is the following command: 0013 0014 journalctl -b | grep kf.kio.workers.gdrive 0015 0016 This will only show the logs since the last boot. To retrieve also older logs, you can filter the messages by the process who emitted them (kdeinit5): 0017 0018 journalctl $(which kdeinit5) | grep kf.kio.workers.gdrive 0019 0020 Enable Debug Output 0021 =================== 0022 0023 Th gdrive slave uses categorized debug output. Normally you would enable its output with a simple: 0024 0025 export QT_LOGGING_RULES="kf.kio.workers.gdrive=true" 0026 0027 However, you need to make sure this variable is present in the environment of kdeinit5, 0028 which is the process that starts the ioslave. 0029 0030 A simpler alternative is to create (or edit) ~/.config/QtProject/qtlogging.ini with the following content: 0031 0032 [Rules] 0033 kf.kio.workers.gdrive=true