|
@@ -41,7 +41,7 @@ def check_data(project, table, partition) -> int:
|
|
|
log_.info("表{}分区{}不存在".format(table, partition))
|
|
|
data_count = 0
|
|
|
except Exception as e:
|
|
|
- log_.error("table:{},partition:{} no data. return data_count=0".format(table, partition))
|
|
|
+ log_.error("table:{},partition:{} no data. return data_count=0:{}".format(table, partition, e))
|
|
|
data_count = 0
|
|
|
return data_count
|
|
|
|