Skip to content

Commit

Permalink
removed unwanted log
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwas1 committed Nov 13, 2023
1 parent 4f015bc commit 07c938a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/app-auth/controllers/app-auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export class AppAuthController {
@Query() pageOption: PaginationDto,
): Promise<App[]> {
Logger.log('getApps() method: starts', 'AppAuthController');
Logger.log(req.user);
const userId = req.user.userId;
const appList: any = await this.appAuthService.getAllApps(
userId,
Expand Down
4 changes: 0 additions & 4 deletions src/user/controllers/user.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,7 @@ export class UserController {
@UsePipes(new ValidationPipe({ transform: true }))
authorize(@Res() res: any, @Req() req: any, @Body() body: any) {
Logger.log('authorize() method: starts', 'userController');

const { hypersign } = body;
Logger.log(hypersign);
const { user } = hypersign.data;
Logger.log(user);
res.status(200).json({
status: 200,
message: hypersign.data,
Expand Down

0 comments on commit 07c938a

Please sign in to comment.