This repository was archived by the owner on Sep 7, 2025. It is now read-only.

Description
func (f *fundamental) Wrap(message string, args ...interface{}) *withMessage {
return WithMessage(f, message, args...)
}
to
func (f *fundamental) Wrap(message string, args ...interface{}) *withMessage {
// if stack already exists:
return WithMessage(f, message, args...)
// else:
return Wrap(f, message, args...)
}
see also other 'Wrap' methods