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');
156156@Module ({
157157 imports: [
158158 HttpModule .forRoot ({
159- logger: customLogger , // Custom logger instance
159+ logger: customLogger , // Custom logger instance
160160 config: {
161161 baseURL: ' https://api.example.com' ,
162162 enableLogging: true ,
@@ -189,9 +189,9 @@ import { HttpModule } from '@nodeflip/nest-axios-http';
189189 imports: [
190190 HttpModule .forFeature ([
191191 {
192- serviceName: " HTTP_SERVICE_2" ,
192+ serviceName: " HTTP_SERVICE_2" ,
193193 config: {
194- baseURL: ' https://api.service1.com' ,
194+ baseURL: ' https://api.service1.com' ,
195195 enableLogging: true ,
196196 onRequest : (config ) => {
197197 // Optional: Customize request logging or modifications
@@ -208,9 +208,9 @@ import { HttpModule } from '@nodeflip/nest-axios-http';
208208 },
209209 },
210210 {
211- serviceName: " HTTP_SERVICE_2" ,
211+ serviceName: " HTTP_SERVICE_2" ,
212212 config: {
213- baseURL: ' https://api.service2.com' ,
213+ baseURL: ' https://api.service2.com' ,
214214 enableLogging: true ,
215215 onRequest : (config ) => {
216216 // Optional: Customize request logging or modifications
You can’t perform that action at this time.
0 commit comments