File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
bulk-model-sync-gradle/src/main/kotlin/org/modelix/model/sync/bulk/gradle/tasks Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -91,16 +91,19 @@ abstract class ImportIntoModelServer @Inject constructor(of: ObjectFactory) : De
91
91
if (files.isNullOrEmpty()) error(" no json files found for included modules" )
92
92
93
93
runBlocking {
94
+ logger.info(" Initializing client..." )
94
95
client.init ()
96
+ logger.info(" Importing..." )
95
97
client.runWrite(branchRef) { rootNode ->
96
98
rootNode.runBulkUpdate {
97
99
logger.info(" Got root node: {}" , rootNode)
98
- logger.info(" Importing ..." )
100
+ logger.info(" Calculating diff ..." )
99
101
ModelImporter (rootNode, continueOnError.get()).importFilesAsRootChildren(files)
100
- logger.info(" Import finished" )
101
102
}
103
+ logger.info(" Sending diff to server..." )
102
104
}
103
105
}
106
+ logger.info(" Import finished." )
104
107
}
105
108
}
106
109
You can’t perform that action at this time.
0 commit comments