清理System.out.println

This commit is contained in:
wuchunlei
2025-06-19 09:35:09 +08:00
parent 49cef4d38f
commit 58be14d41b
23 changed files with 32 additions and 48 deletions

View File

@@ -57,7 +57,7 @@ public class MyUserServiceImpl extends ServiceImpl<MyUserDao, MyUserEntity> impl
// 复制代码运行请自行打印 API 的返回值
SendSmsResponse sendSmsResponse = client.sendSmsWithOptions(sendSmsRequest, runtime);
SendSmsResponseBody body = sendSmsResponse.getBody();
System.out.println(body.getMessage());
// System.out.println(body.getMessage());
} catch (TeaException error) {
// 如有需要,请打印 error
Common.assertAsString(error.message);

View File

@@ -437,7 +437,7 @@ public class UserCertificateServiceImpl extends ServiceImpl<UserCertificateDao,
File outputfile = new File("F:\\certificate\\template\\"+ filename +".jpg");
ImageIO.write(image, "jpg", outputfile);
System.out.println(no +","+ name +","+ filename);
// System.out.println(no +","+ name +","+ filename);
} catch (IOException e) {
throw new RuntimeException(e);
}