Does JAlbum have any logging?
Can edtFTPj be updated easily in JAlbum?
The answers from JAlbum's author David Ekholm:
> Does JAlbum have any logging?
Yes, pressing F7 on the main window will open a logging console window
> Can edtFTPj be updated easily in JAlbum?
Yes, just stuff updated code into the JAlbum.jar archive (Use Java version)
That's what I caught in the console while doing "Smart Upload":
JAlbum 7.2.1 system console.
This section captures debug prints sent to System.out and System.err
The top section evaluates BeanShell expressions (interpreted Java)
Press Ctrl+E to evaluate an expression. (Evaluates selected text if selection is active)
You have access to the basic JAlbum implicit objects such as engine and window
Sample expressions:
4*(3+2); // Basic calculations
engine.getSkin(); // Use of implicit object
for (int i=1; i<10; i++) System.out.println(i); // Iterations
window.messageBox("You can interact with any Java object");
info.cqs.remotefs.RemoteFSException: com.enterprisedt.net.ftp.FTPException: Transfer complete.
at info.cqs.remotefs.ftp.FtpAdapter.putFile(Unknown Source)
at info.cqs.remotefs.RemoteFSBean.<unknown>(Unknown Source)
at se.datadosen.jalbum.UploadBean.calcTimeDifference(Unknown Source)
at se.datadosen.jalbum.UploadBean.uploadAlbum(Unknown Source)
at se.datadosen.jalbum.JPublishWizard$PublishStep$15.run(Unknown Source)
Caused by: com.enterprisedt.net.ftp.FTPException: Transfer complete.
at com.enterprisedt.net.ftp.FTPControlSocket.validateReply(Unknown Source)
at com.enterprisedt.net.ftp.FTPControlSocket.createDataSocketPASV(Unknown Source)
at com.enterprisedt.net.ftp.FTPControlSocket.createDataSocket(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.setupDataSocket(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.initPut(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.putData(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.put(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.put(Unknown Source)
at com.enterprisedt.net.ftp.FTPClient.<unknown>(Unknown Source)
... 5 more