[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -71,14 +71,14 @@ void ObDeviceManager::destroy()
ret_handle = handle_map_.destroy();
allocator_.~ObFIFOAllocator();
if (OB_SUCCESS != ret_dev || OB_SUCCESS != ret_handle) {
OB_LOG(WARN, "fail to destroy device map", K(ret_dev), K(ret_handle));
OB_LOG_RET(WARN, ret_dev, "fail to destroy device map", K(ret_dev), K(ret_handle));
}
//free the arena
allocator_.reset();
fin_oss_env();
is_init_ = false;
device_count_ = 0;
OB_LOG(WARN, "release the init resource", K(ret_dev), K(ret_handle));
OB_LOG_RET(WARN, ret_dev, "release the init resource", K(ret_dev), K(ret_handle));
}
OB_LOG(INFO, "destroy device manager!");
}