Skip to content

Commit df14970

Browse files
authored
chore: Add console.log to debug (#3998)
1 parent 11dfdd2 commit df14970

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/companion/companionRouter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const config = require('../config.js');
88
const tokenManager = new TokenManager();
99
const COMPANION_API_BASE_URL = `${config.features?.KYMA_COMPANION?.link ??
1010
''}/api/conversations/`;
11-
11+
console.log(COMPANION_API_BASE_URL);
1212
const router = express.Router();
1313

1414
router.use(express.json());

backend/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function getConfigDir() {
1515
function getEnvConfig() {
1616
const envConfigDir = getConfigDir();
1717
let configYaml = {};
18-
console.log(path.join('./', envConfigDir, '/config.yaml'));
18+
1919
if (envConfigDir) {
2020
configYaml = jsyaml.load(
2121
fs.readFileSync(path.join(envConfigDir, '/config.yaml')),

0 commit comments

Comments
 (0)