Skip to content

Commit 97d2a1b

Browse files
authoredJan 21, 2025··
Relax the messaging when Wrangler uses redirected configuration (#7832)
Previously the messaging was rendered as a warning, which implied that the user had done something wrong. Now it is just a regular info message.
1 parent e2f5756 commit 97d2a1b

File tree

3 files changed

+30
-34
lines changed

3 files changed

+30
-34
lines changed
 

‎.changeset/green-mice-carry.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
Relax the messaging when Wrangler uses redirected configuration
6+
7+
Previously the messaging was rendered as a warning, which implied that the user
8+
had done something wrong. Now it is just a regular info message.

‎packages/wrangler/src/__tests__/config/findWranglerConfig.test.ts

+18-30
Original file line numberDiff line numberDiff line change
@@ -105,22 +105,16 @@ describe("config findWranglerConfig()", () => {
105105
Object {
106106
"debug": "",
107107
"err": "",
108-
"info": "",
108+
"info": "Using redirected Wrangler configuration.
109+
- Configuration being used: \\"dist/wrangler.json\\"
110+
- Original user's configuration: \\"<no user config found>\\"
111+
- Deploy configuration file: \\".wrangler/deploy/config.json\\"
112+
Using redirected Wrangler configuration.
113+
- Configuration being used: \\"dist/wrangler.json\\"
114+
- Original user's configuration: \\"<no user config found>\\"
115+
- Deploy configuration file: \\".wrangler/deploy/config.json\\"",
109116
"out": "",
110-
"warn": "▲ [WARNING] Using redirected Wrangler configuration.
111-
112-
Configuration being used: \\"dist/wrangler.json\\"
113-
Original user's configuration: \\"<no user config found>\\"
114-
Deploy configuration file: \\".wrangler/deploy/config.json\\"
115-
116-
117-
▲ [WARNING] Using redirected Wrangler configuration.
118-
119-
Configuration being used: \\"dist/wrangler.json\\"
120-
Original user's configuration: \\"<no user config found>\\"
121-
Deploy configuration file: \\".wrangler/deploy/config.json\\"
122-
123-
",
117+
"warn": "",
124118
}
125119
`);
126120
});
@@ -148,22 +142,16 @@ describe("config findWranglerConfig()", () => {
148142
Object {
149143
"debug": "",
150144
"err": "",
151-
"info": "",
145+
"info": "Using redirected Wrangler configuration.
146+
- Configuration being used: \\"dist/wrangler.json\\"
147+
- Original user's configuration: \\"wrangler.toml\\"
148+
- Deploy configuration file: \\".wrangler/deploy/config.json\\"
149+
Using redirected Wrangler configuration.
150+
- Configuration being used: \\"dist/wrangler.json\\"
151+
- Original user's configuration: \\"wrangler.toml\\"
152+
- Deploy configuration file: \\".wrangler/deploy/config.json\\"",
152153
"out": "",
153-
"warn": "▲ [WARNING] Using redirected Wrangler configuration.
154-
155-
Configuration being used: \\"dist/wrangler.json\\"
156-
Original user's configuration: \\"wrangler.toml\\"
157-
Deploy configuration file: \\".wrangler/deploy/config.json\\"
158-
159-
160-
▲ [WARNING] Using redirected Wrangler configuration.
161-
162-
Configuration being used: \\"dist/wrangler.json\\"
163-
Original user's configuration: \\"wrangler.toml\\"
164-
Deploy configuration file: \\".wrangler/deploy/config.json\\"
165-
166-
",
154+
"warn": "",
167155
}
168156
`);
169157
});

‎packages/wrangler/src/config/config-helpers.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ function findRedirectedWranglerConfig(
128128
}
129129
}
130130

131-
logger.warn(dedent`
131+
logger.info(dedent`
132132
Using redirected Wrangler configuration.
133-
Configuration being used: "${path.relative(".", redirectedConfigPath)}"
134-
Original user's configuration: "${userConfigPath ? path.relative(".", userConfigPath) : "<no user config found>"}"
135-
Deploy configuration file: "${path.relative(".", deployConfigPath)}"
133+
- Configuration being used: "${path.relative(".", redirectedConfigPath)}"
134+
- Original user's configuration: "${userConfigPath ? path.relative(".", userConfigPath) : "<no user config found>"}"
135+
- Deploy configuration file: "${path.relative(".", deployConfigPath)}"
136136
`);
137137
return redirectedConfigPath;
138138
}

0 commit comments

Comments
 (0)
Please sign in to comment.