We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28967eb commit ebd41e8Copy full SHA for ebd41e8
.gitignore
@@ -9,5 +9,5 @@ client/src/assets/scss/material-dashboard-pro-react.css
9
.npmrc
10
server/config.js
11
12
-.env
+.env*
13
logs
server/server.js
@@ -39,7 +39,11 @@ function validateEnvironmentVariables() {
39
async function bootstrapApp() {
40
const app = express();
41
42
- LogConfig.info("Attempting to login as the API bot user...");
+ LogConfig.info(
43
+ `Attempting to login as the API bot user '${
44
+ process.env.CSGIGS_ROCKET_API_USER
45
+ }'...`
46
+ );
47
app.locals.apiAuth = await api.loginAsBot();
48
LogConfig.info("Logged in as API bot user and have auth details...");
49
0 commit comments