ithit.webdav.server
Version:
With IT Hit WebDAV Server Engine for Node.js you can create your own WebDAV server, add WebDAV support to your existing Node.js project or DAV-enable your CMS/DMS/CRM.
24 lines (23 loc) • 797 B
TypeScript
/**
* @copyright Copyright (c) 2017 IT Hit. All rights reserved.
*/
/**
* @hidden
* Logging options.
*/
export declare enum LogFlagsEnum {
/**
* If this flag is set the GET response body will be logged.
* @remarks The body of the GET response may be very large and often not human readable.
*
* It make sense to enable GET body logging for CalDAV and CardDAV servers and disable in other cases.
*/
logGetResponseBody = 1,
/**
* If this flag is set the PUT request body will be logged.
* @remarks The body of the PUT request may be very large and often not human readable.
*
* It make sense to enable PUT body logging for CalDAV and CardDAV servers and disable in other cases.
*/
logPutRequestBody = 2
}