MCPcopy Create free account
hub / github.com/comaps/comaps / DebugPrint

Function DebugPrint

libs/storage/storage_defines.cpp:19–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17}
18
19string DebugPrint(Status status)
20{
21 switch (status)
22 {
23 case Status::Undefined: return "EUndefined"s;
24 case Status::OnDisk: return "OnDisk"s;
25 case Status::NotDownloaded: return "NotDownloaded"s;
26 case Status::DownloadFailed: return "DownloadFailed"s;
27 case Status::Downloading: return "Downloading"s;
28 case Status::Applying: return "Applying"s;
29 case Status::InQueue: return "InQueue"s;
30 case Status::UnknownError: return "Unknown"s;
31 case Status::OnDiskOutOfDate: return "OnDiskOutOfDate"s;
32 case Status::OutOfMemFailed: return "OutOfMemFailed"s;
33 }
34 UNREACHABLE();
35}
36
37string DebugPrint(NodeStatus status)
38{

Callers 2

DeleteAllLocalMapsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected