This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
cache module, exchange the log level of Session destroyed with id: xxx from INFO to WARNING.
tags/v1.1.0
mayang
5 years ago
parent
4ad573258c
commit
4059e9c53e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/ccsrc/minddata/dataset/engine/cache/cache_server.cc
+ 1
- 1
mindspore/ccsrc/minddata/dataset/engine/cache/cache_server.cc
View File
@@ -1014,7 +1014,7 @@ Status CacheServer::DestroySession(CacheRequest *rq) {
// Finally remove the session itself
auto n = active_sessions_.erase(drop_session_id);
if (n > 0) {
MS_LOG(
INFO
) << "Session destroyed with id " << drop_session_id;
MS_LOG(
WARNING
) << "Session destroyed with id " << drop_session_id;
return Status::OK();
} else {
if (found) {
Write
Preview
Loading…
Cancel
Save