From da2d09954299bc5e021dfa79043319c4fff2aa7b Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Wed, 7 Feb 2018 10:24:02 -0700 Subject: [PATCH] chore: log output in init hook useful to ensure and know that fake x-pack is loaded --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index ebde115..54d3f94 100644 --- a/index.js +++ b/index.js @@ -10,5 +10,8 @@ export default function (kibana) { xpack_api_polling_frequency_millis: Joi.number().default(30000), }).default(); }, + init() { + console.log('FAKE X-PACK IN FULL EFFECT! [xpack_main]'); + }, }); }