Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
cda67704
Commit
cda67704
authored
6 years ago
by
Alexander Bubenchikov
1
Browse files
Options
Download
Email Patches
Plain Diff
IDEA-200425 - added logger to debug maven update issues
parent
667655ec
Branches unavailable
Tags unavailable
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugins/maven/src/main/java/org/jetbrains/idea/maven/project/MavenProjectsManagerWatcher.java
+7
-0
...rains/idea/maven/project/MavenProjectsManagerWatcher.java
with
7 additions
and
0 deletions
+7
-0
plugins/maven/src/main/java/org/jetbrains/idea/maven/project/MavenProjectsManagerWatcher.java
+
7
-
0
View file @
cda67704
...
...
@@ -270,6 +270,13 @@ public class MavenProjectsManagerWatcher {
final
boolean
forceImportAndResolve
)
{
final
AsyncPromise
<
Void
>
promise
=
new
AsyncPromise
<>();
Runnable
onCompletion
=
createScheduleImportAction
(
forceImportAndResolve
,
promise
);
if
(
LOG
.
isDebugEnabled
())
{
String
withForceOptionMessage
=
force
?
" with force option"
:
""
;
LOG
.
debug
(
"Scheduling update for "
+
myProjectsTree
+
withForceOptionMessage
+
". Files to update: "
+
filesToUpdate
+
". Files to delete: "
+
filesToDelete
);
}
myReadingProcessor
.
scheduleTask
(
new
MavenProjectsProcessorReadingTask
(
filesToUpdate
,
filesToDelete
,
force
,
...
...
This diff is collapsed.
Click to expand it.
小 白蛋
@baidan
mentioned in commit
bb7ba402
·
2 years ago
mentioned in commit
bb7ba402
mentioned in commit bb7ba4026429ecdd71d9a87083f0427178104f33
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
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 comment
Menu
Projects
Groups
Snippets
Help