FullyQualifiedAppID returns the fully-qualified application ID. This may contain a partition prefix (e.g. "s~" for High Replication apps), or a domain prefix (e.g. "example.com:").
(ctx context.Context)
| 89 | // This may contain a partition prefix (e.g. "s~" for High Replication apps), |
| 90 | // or a domain prefix (e.g. "example.com:"). |
| 91 | func FullyQualifiedAppID(ctx context.Context) string { |
| 92 | if id, ok := ctx.Value(&appIDOverrideKey).(string); ok { |
| 93 | return id |
| 94 | } |
| 95 | return fullyQualifiedAppID(ctx) |
| 96 | } |
| 97 | |
| 98 | func Logf(ctx context.Context, level int64, format string, args ...interface{}) { |
| 99 | if f, ok := ctx.Value(&logOverrideKey).(logOverrideFunc); ok { |
no test coverage detected
searching dependent graphs…