Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions analysator/vlsvfile/vlsvreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@ def read_fsgrid_variable_cellid(self, name, cellids=-1, operator="pass"):
def get_fsgrid_decomposition(self):
# Try if in metadata
if(self.__fsGridDecomposition is not None):
print("read ",self.__fsGridDecomposition)
logging.info("read " + str(self.__fsGridDecomposition))

if self.__fsGridDecomposition is None:
self.__fsGridDecomposition = self.read(tag="MESH_DECOMPOSITION",mesh='fsgrid')
Expand Down Expand Up @@ -4359,4 +4359,4 @@ def cache_optimization_files(self, force=False):
''' Create cached optimization files for this reader object (e.g. spatial index)

'''
self.__metadata_cache.set_cellid_spatial_index(force)
self.__metadata_cache.set_cellid_spatial_index(force)
Loading