Skip to content

Commit fb90fe3

Browse files
author
FalkWolsky
committed
remove Console Logs in Node Server
1 parent 476943c commit fb90fe3

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

server/node-service/src/controllers/plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function runPluginQuery(req: Request, res: Response) {
1919
const ctx = pluginServices.getPluginContext(req);
2020

2121

22-
console.log("pluginName: ", pluginName, "dsl: ", dsl, "context: ", context, "dataSourceConfig: ", dataSourceConfig, "ctx: ", ctx);
22+
// console.log("pluginName: ", pluginName, "dsl: ", dsl, "context: ", context, "dataSourceConfig: ", dataSourceConfig, "ctx: ", ctx);
2323

2424
const result = await pluginServices.runPluginQuery(
2525
pluginName,

server/node-service/src/plugins/lowcoder/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ const lowcoderPlugin: DataSourcePlugin<any, DataSourceConfigType> = {
6262
},
6363
run: function (actionData, dataSourceConfig): Promise<any> {
6464
const { serverURL, ...otherDataSourceConfig } = dataSourceConfig;
65-
console.log("Lowcoder API Plugin: run", serverURL, otherDataSourceConfig);
6665
const runApiDsConfig = {
6766
url: "",
6867
serverURL: serverURL,

server/node-service/src/plugins/openApi/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ export async function runOpenApi(
125125
securities,
126126
responseContentType: "application/json",
127127
userFetch: async (url: string, req: RequestInit) => {
128-
console.log("req", req);
129128
return fetch(url, req);
130129
},
131130
requestInterceptor: (req: any) => {

0 commit comments

Comments
 (0)