summaryrefslogtreecommitdiff
path: root/compiler/exo/src/LoggingContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/exo/src/LoggingContext.cpp')
-rw-r--r--compiler/exo/src/LoggingContext.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/compiler/exo/src/LoggingContext.cpp b/compiler/exo/src/LoggingContext.cpp
new file mode 100644
index 000000000..1c14d97b9
--- /dev/null
+++ b/compiler/exo/src/LoggingContext.cpp
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "exo/LoggingContext.h"
+#include "Log.h" // To use LoggerConfig
+
+#include <hermes/ConsoleReporter.h>
+#include <stdex/Memory.h>
+
+namespace exo
+{
+
+hermes::Context *LoggingContext::get(void)
+{
+ static hermes::Context *ctx = nullptr;
+
+ if (ctx == nullptr)
+ {
+ ctx = new hermes::Context;
+ ctx->sinks()->append(stdex::make_unique<hermes::ConsoleReporter>());
+ ctx->config(stdex::make_unique<LoggerConfig>());
+ }
+
+ return ctx;
+}
+
+} // namespac exo