File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ const customLogger = new Logger('CustomLogger');
156
156
@Module ({
157
157
imports: [
158
158
HttpModule .forRoot ({
159
- logger: customLogger , // Custom logger instance
159
+ logger: customLogger , // Custom logger instance
160
160
config: {
161
161
baseURL: ' https://api.example.com' ,
162
162
enableLogging: true ,
@@ -189,9 +189,9 @@ import { HttpModule } from '@nodeflip/nest-axios-http';
189
189
imports: [
190
190
HttpModule .forFeature ([
191
191
{
192
- serviceName: " HTTP_SERVICE_2" ,
192
+ serviceName: " HTTP_SERVICE_2" ,
193
193
config: {
194
- baseURL: ' https://api.service1.com' ,
194
+ baseURL: ' https://api.service1.com' ,
195
195
enableLogging: true ,
196
196
onRequest : (config ) => {
197
197
// Optional: Customize request logging or modifications
@@ -208,9 +208,9 @@ import { HttpModule } from '@nodeflip/nest-axios-http';
208
208
},
209
209
},
210
210
{
211
- serviceName: " HTTP_SERVICE_2" ,
211
+ serviceName: " HTTP_SERVICE_2" ,
212
212
config: {
213
- baseURL: ' https://api.service2.com' ,
213
+ baseURL: ' https://api.service2.com' ,
214
214
enableLogging: true ,
215
215
onRequest : (config ) => {
216
216
// Optional: Customize request logging or modifications
You can’t perform that action at this time.
0 commit comments