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
9191 if (files.isNullOrEmpty()) error(" no json files found for included modules" )
9292
9393 runBlocking {
94+ logger.info(" Initializing client..." )
9495 client.init ()
96+ logger.info(" Importing..." )
9597 client.runWrite(branchRef) { rootNode ->
9698 rootNode.runBulkUpdate {
9799 logger.info(" Got root node: {}" , rootNode)
98- logger.info(" Importing ..." )
100+ logger.info(" Calculating diff ..." )
99101 ModelImporter (rootNode, continueOnError.get()).importFilesAsRootChildren(files)
100- logger.info(" Import finished" )
101102 }
103+ logger.info(" Sending diff to server..." )
102104 }
103105 }
106+ logger.info(" Import finished." )
104107 }
105108}
106109
You can’t perform that action at this time.
0 commit comments