constructor()

in src/registry.ts [28:33]


    constructor(config: Config = new Config()) {
        this._config = config;
        this.logger = config.logger;
        this._writer = new_writer(this._config.location, this.logger);
        this.logger.debug(`Create Registry with extra_common_tags=${tags_toString(this._config.extra_common_tags)}`);
    }