To configure what information is logged:
On the FileCloud Server, navigate to the following folder:
Open the following file for editing:
Add the following lines:
Configuration Lines to add | Notes | Example |
---|
define("TONIDOCLOUD_AUDIT_IGNORE_OPS", ""); | When specified, does not add audit logs for specific FileCloud requests. You can specify multiple requests by using a '|' symbol as a delimiter. For example, if you add "deletefile|loginguest", both these operations would not be added to the audit log. | define("TONIDOCLOUD_AUDIT_IGNORE_OPS", "deletefile|loginguest|createfolder"); |
define("TONIDOCLOUD_AUDIT_IGNORE_AGENT", ""); | When specified, does not add audit logs for any requests coming in from specified FileCloud clients. You can specify multiple clients by using a '|' symbol as a delimiter. | define("TONIDOCLOUD_AUDIT_IGNORE_AGENT", "Cloud Sync|Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0|FileCloudDrive"); |
If both defines are specified, then only requests that match both conditions are excluded from the Audit Log.
For example:
define("TONIDOCLOUD_AUDIT_IGNORE_OPS", "deletefile|loginguest|createfolder");
define("TONIDOCLOUD_AUDIT_IGNORE_AGENT", "Cloud Sync");
The above configuration will skip adding audit logs when the Cloud Sync client requests to:
- Delete File
- Login Guest
- Create Folder