1
0
Sven 1 жил өмнө
parent
commit
7c50a81926
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      src/constants.ts

+ 1 - 1
src/constants.ts

@@ -9,7 +9,7 @@ export const mode = modeRaw.match(/^{{.+}}$/) ? "production" : modeRaw;
 export const branch = branchRaw.match(/^{{.+}}$/) ? "main" : branchRaw;
 
 /**
- * How much info should be logged to the devtools console?  
+ * How much info should be logged to the devtools console  
  * 0 = Debug (show everything) or 1 = Info (show only important stuff)
  */
 export const logLevel: LogLevel = mode === "production" ? 1 : 0;