Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « logger « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f5353fcbedff3427b58ad83d5d4cfedb1e4134b (plain)
1
2
3
4
5
6
/* eslint-disable no-console */
export const LOG_PREFIX = '[gitlab]';

export const logError = (message = '', ...args) => {
  console.error(LOG_PREFIX, `${message}\n`, ...args);
};