| 7 | #include "pxr/exec/exec/valueKey.h" |
| 8 | |
| 9 | PXR_NAMESPACE_OPEN_SCOPE |
| 10 | |
| 11 | std::string |
| 12 | ExecValueKey::GetDebugName() const |
| 13 | { |
| 14 | // Diagnostics should not be entangled with uncompilation dependencies. |
| 15 | EsfJournal *journal = nullptr; |
| 16 | std::string debugName = _provider->GetPath(journal).GetAsString(); |
| 17 | debugName += " ["; |
| 18 | debugName += _computationName.GetString(); |
| 19 | debugName += ']'; |
| 20 | return debugName; |
| 21 | } |
| 22 | |
| 23 | PXR_NAMESPACE_CLOSE_SCOPE |