Prechádzať zdrojové kódy

remove square brackets

Richard Köhl 2 rokov pred
rodič
commit
9afffb80be

+ 0 - 0
src/infrastructure/.gitkeep


+ 1 - 1
src/interfaces/controllers/controller.class.ts

@@ -82,6 +82,6 @@ export default class Controller {
     userName?: string,
   ) {
     const user = userName ? userName + ' ' : '';
-    return `[${method}] ${path} ${user}${status} ${length}`;
+    return `${method} ${path} ${user}${status} ${length}`;
   }
 }