Is it possible to view logs when publishing to a server or see if there is some kind of “hang up” in the FTP process?
Hi @Tauri4n,
You could try enabling debug logging in the Publishing Dialog window.
Make sure the Publishing dialog is open then run the following code in the ** View > Tabs & Sidebars > Console**:
windows = require("ko/windows").getWindows()
for (var w of windows) {
if (w.document.title === "Publishing") {
alert("got it")
w.ko.logging.getLogger("publishing.dialog").setLevel(ko.logging.LOG_DEBUG)
}
}
Then there should be more output in Help > Troubleshooting > View Log File.
- Carey