()
| 925 | } |
| 926 | |
| 927 | func (log *accessEntry) String() string { |
| 928 | return fmt.Sprintf("ACL-LOG Authorizing user %q with groups %q on predicates %q "+ |
| 929 | "for %q, allowed:%v", log.userId, strings.Join(log.groups, ","), |
| 930 | strings.Join(log.preds, ","), log.operation.Name, log.allowed) |
| 931 | } |
| 932 | |
| 933 | func logAccess(log *accessEntry) { |
| 934 | if glog.V(1) { |
no outgoing calls
no test coverage detected