alekzonder/maf

View on GitHub
src/Request/Debug.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

class RequestDebug {

    constructor () {
        this._log = [];
    }

    log (data) {
        this._log.push(data);
    }

    get () {
        return this._log;
    }
}

module.exports = RequestDebug;