29 lines
516 B
JavaScript
29 lines
516 B
JavaScript
/**
|
|
* Log
|
|
* Belongs to LocalCDN
|
|
*
|
|
* @author nobody
|
|
* @since 2021-02-19
|
|
*
|
|
* @license MPL 2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
/**
|
|
* Log
|
|
*/
|
|
|
|
var log = {};
|
|
|
|
log.append = function (initiator, resource, target, highlight) {
|
|
log.data.push({initiator, resource, target, highlight});
|
|
};
|
|
|
|
log.data = [];
|