This repository has been archived by the owner on Feb 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathlog.js
40 lines (35 loc) · 1.49 KB
/
log.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
* @license
* Copyright (c) 2009, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Eclipse Distribution
* License v1.0 (http://www.eclipse.org/org/documents/edl-v10.html).
*
* Contributors: IBM Corporation - initial API and implementation
*******************************************************************************/
/*eslint-env browser, amd*/
define(['i18n!orion/nls/messages'], function(messages){
var exports = {};
/**
* Creates an instance of the log service using the provided service registry.
* @class The log service provides services for logging information messages
* @name orion.log.LogService
*/
exports.LogService = function(serviceRegistry) {
this._serviceRegistry = serviceRegistry;
this._serviceRegistration = serviceRegistry.registerService("orion.core.log", this); //$NON-NLS-0$
};
exports.LogService.prototype = /** @lends orion.log.LogService.prototype */ {
/**
* Prints an information message to the log.
* @param {String} msg The message to be logged
*/
info : function(message) {
// TODO temporary implementation uses status line
// obviously not the real answer
this._serviceRegistry.getService("orion.page.message").setMessage(messages["LOG: "] + message); //$NON-NLS-0$
}
};
return exports;
});