We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff4d60 commit 42ccc6fCopy full SHA for 42ccc6f
src/filesystem.ts
@@ -31,6 +31,7 @@ import {
31
} from './utils'
32
33
const debug = Debug('asset-store-filesystem')
34
+if (process.env.DEBUG === "*") debug.enabled = true;
35
36
interface IAsset {
37
locale: string,
src/index.ts
@@ -110,6 +110,8 @@ export const getConfig = () => {
110
export { assetStoreInstance }
111
112
113
+if (process.env.DEBUG === '*') debug.enabled = true;
114
+
115
/**
116
* @description to start the asset connector
117
* @param {object} config Optional app config
0 commit comments