Kaynağa Gözat

增加日志打印

yhz 6 yıl önce
ebeveyn
işleme
70e1288c6a

+ 2 - 2
.gitignore

@@ -1,6 +1,6 @@
-/__pycache__
+**/__pycache__
 /game
 /gen
 /target
 /test
-/test.py
+/test.py

BIN
sdk/jm/libs/jm_sdk_20190401.jar


BIN
sdk/jm/script/__pycache__/sdk_script.cpython-37.pyc


+ 1 - 0
sdk/jm/script/sdk_script.py

@@ -42,6 +42,7 @@ def createJmhyProperties(game, sdk, subChannel, config):
     content = ''
     for key in propValue:
         content = '%s%s=%s\n' % (content, key, propValue[key])
+        print('write properties : %s = %s' % (key, propValue[key]))
     file_utils.createFile(properties, content)
     return 0