UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

16 lines 409 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fs = require("fs"); class FileLogger { constructor(path) { this.path = path; } error(msg) { fs.appendFile(this.path, msg, 'utf8', _ => { }); } log(msg) { fs.appendFile(this.path, msg, 'utf8', _ => { }); } } exports.FileLogger = FileLogger; //# sourceMappingURL=fileLogger.js.map