constructor()

in lib/config.js [5:12]


  constructor() {
    this.data = {
      logLevel: argv.logLevel || 'info',
      fileLogLevel: argv.fileLogLevel || 'debug',
      logDir: (argv.seleniumProxyLogDir || process.env['GITLAB_SELENIUM_PROXY_LOG_DIR']) ? path.resolve(__dirname, '../', (argv.gitlabSeleniumProxyLogDir || process.env['GITLAB_SELENIUM_PROXY_LOG_DIR'])) : path.resolve(__dirname, '../logs'),
      targetEndpoint: argv.targetSeleniumRemoteUrl || process.env['GITLAB_TARGET_SELENIUM_REMOTE_URL'] || 'http://localhost:4444/wd/hub'
    };
  }