Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for iamLogEvent (0.12 sec)

  1. cmd/logging.go

    }
    
    func iamLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	if !errors.Is(err, grid.ErrDisconnected) {
    		logger.LogIf(ctx, "iam", err, errKind...)
    	}
    }
    
    func iamLogEvent(ctx context.Context, msg string, args ...interface{}) {
    	logger.Event(ctx, "iam", msg, args...)
    }
    
    func rebalanceLogIf(ctx context.Context, err error, errKind ...interface{}) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. cmd/iam.go

    					normKey, origKeys)
    			}
    
    			if len(origKeys[1:]) > 0 {
    				// Log that extra DN mappings will not be imported.
    				iamLogEvent(ctx, "import-ldap-normalize: extraneous DN mappings found for LDAP DN[%s]: %v will not be imported", origKeys[0], origKeys[1:])
    			}
    
    			// Policies mapped to the DN's are the same, so we remove the extra
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top