mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
9 lines
191 B
Go
9 lines
191 B
Go
|
package ttlv
|
||
|
|
||
|
import "github.com/ansel1/merry"
|
||
|
|
||
|
// Details prints details from the error, including a stacktrace when available.
|
||
|
func Details(err error) string {
|
||
|
return merry.Details(err)
|
||
|
}
|