. If you see symptom that suddenly the cloud drive volume is not usable or accessible, the first thing to check is to use Applications -> Utilities -> Activity Monitor and see if the GladinetClient process is still running. If it is not running, it is very likely the Mac client crashed.
To check the crash log, go to
$HOME/Library/Logs/DiagnosticReports/
When a process crashes, it will generate crash log here. The log file name has the process name and the timestamp when the crash happens.
. Besides the crash log, open Applications -> Utilities -> Console. Here, check Crash Reports.
. if there is no crash log or Crash Report under Console, use DTrace tool to collect system calls Mac client generates.
With the Mac client down, open Terminal and run
sudo dtruss -n "Gladinet Cloud Mac Agent"
Start Mac client, should see system calls showing up.
Stop Mac client. On the terminal, press control+C to stop dtruss.
run:
sudo dtruss -n "Gladinet Cloud Mac Agent" > macClient.log 2>&1
it will redirect all output from dtruss to macClient.log under current folder.
Start Mac client and reproduce the issue.
Press control+C on the terminal, to stop the dtruss.
Collect macClient.log file generated for us.
Comments
1 comment
The directory location is not $HOME/Library/Logs/DiagnosticReports/
It is /Library/Logs/DiagnosticReports/
Please sign in to leave a comment.