diff --git a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/OrderedPropertyIndexEditor.java b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/OrderedPropertyIndexEditor.java
index 5a23e04..73a68b2 100644
--- a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/OrderedPropertyIndexEditor.java
+++ b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/OrderedPropertyIndexEditor.java
@@ -70,8 +70,8 @@ public class OrderedPropertyIndexEditor extends PropertyIndexEditor {
             if (Strings.isNullOrEmpty(value)) {
                 LOG.warn("Empty value passed as propertyNames. Index not properly configured. Ignoring.");
             } else {
-                if (names.isArray()) {
-                    LOG.warn("Only single value supported. '{}' only will be used.", value);
+                if (names.isArray() && names.count() > 1) {
+                    LOG.debug("Only single value supported. '{}' only will be used.", value);
                 }
                 pns = Collections.singleton(value);
                 this.properlyConfigured = true;
@@ -82,7 +82,7 @@ public class OrderedPropertyIndexEditor extends PropertyIndexEditor {
         // configuring direction
         String propertyDirection = definition.getString(OrderedIndex.DIRECTION);
         if (propertyDirection == null) {
-            LOG.info("Using default direction for sorting: {}", this.direction);
+            // LOG.debug("Using default direction for sorting: {}", this.direction);
         } else {
             OrderDirection dir = OrderDirection.fromString(propertyDirection);
             if (dir == null) {
