From acce83cdbc975faaa440f0df9f21c58ef797a110 Mon Sep 17 00:00:00 2001 From: LeeDr Date: Wed, 2 Dec 2015 14:25:08 -0600 Subject: [PATCH] Debug log message when createIndexPattern succeeds. --- test/support/pages/SettingsPage.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/support/pages/SettingsPage.js b/test/support/pages/SettingsPage.js index 92b6da577b72..1d7ed71e6d73 100644 --- a/test/support/pages/SettingsPage.js +++ b/test/support/pages/SettingsPage.js @@ -298,6 +298,8 @@ define(function (require) { .then(function (currentUrl) { if (!currentUrl.match(/indices\/.+\?/)) { throw new Error('Index pattern not created'); + } else { + common.debug('Index pattern created: ' + currentUrl); } }); });