Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 318f883a
authored
Jul 14, 2023
by
chamberone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add logs
1 parent
cdde74fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
project-user/src/main/java/com/dituhui/pea/user/service/UserService.java
project-user/src/main/java/com/dituhui/pea/user/service/UserService.java
View file @
318f883
...
...
@@ -161,7 +161,9 @@ public class UserService {
if
(
CollectionUtils
.
isNotEmpty
(
allOrgs
))
{
log
.
info
(
"allOrgs2: {}"
,
allOrgs
.
size
());
try
{
allOrgs
.
stream
().
forEach
(
o
->
o
.
setIsActive
(
true
));
for
(
OrganizationDTO
organizationDTO
:
allOrgs
)
{
log
.
info
(
"allOrgs31: {}"
,
organizationDTO
);
}
log
.
info
(
"allOrgs3: {}"
,
allOrgs
.
get
(
0
));
log
.
info
(
"allOrgs4: {}"
,
allOrgs
.
get
(
0
).
getIsActive
());
allOrgs
.
get
(
0
).
setIsActive
(
true
);
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment