Home
last modified time | relevance | path

Searched refs:LoggerAdapter (Results 1 – 25 of 26) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DparserRealSource1.symbols127 export class LoggerAdapter implements ILogger {
128 >LoggerAdapter : Symbol(LoggerAdapter, Decl(parserRealSource1.ts, 55, 5))
132 >_information : Symbol(LoggerAdapter._information, Decl(parserRealSource1.ts, 57, 51))
135 >_debug : Symbol(LoggerAdapter._debug, Decl(parserRealSource1.ts, 58, 38))
138 >_warning : Symbol(LoggerAdapter._warning, Decl(parserRealSource1.ts, 59, 32))
141 >_error : Symbol(LoggerAdapter._error, Decl(parserRealSource1.ts, 60, 34))
144 >_fatal : Symbol(LoggerAdapter._fatal, Decl(parserRealSource1.ts, 61, 32))
147 >logger : Symbol(LoggerAdapter.logger, Decl(parserRealSource1.ts, 64, 21))
151 >this._information : Symbol(LoggerAdapter._information, Decl(parserRealSource1.ts, 57, 51))
152 >this : Symbol(LoggerAdapter, Decl(parserRealSource1.ts, 55, 5))
[all …]
DscannerClass2.symbols2 export class LoggerAdapter implements ILogger {
3 >LoggerAdapter : Symbol(LoggerAdapter, Decl(scannerClass2.ts, 0, 0))
6 >logger : Symbol(LoggerAdapter.logger, Decl(scannerClass2.ts, 1, 21))
9 >this : Symbol(LoggerAdapter, Decl(scannerClass2.ts, 0, 0))
10 >this.logger : Symbol(LoggerAdapter.logger, Decl(scannerClass2.ts, 1, 21))
11 >this : Symbol(LoggerAdapter, Decl(scannerClass2.ts, 0, 0))
12 >logger : Symbol(LoggerAdapter.logger, Decl(scannerClass2.ts, 1, 21))
DparserClass2.symbols2 export class LoggerAdapter implements ILogger {
3 >LoggerAdapter : Symbol(LoggerAdapter, Decl(parserClass2.ts, 0, 0))
6 >logger : Symbol(LoggerAdapter.logger, Decl(parserClass2.ts, 1, 21))
9 >this : Symbol(LoggerAdapter, Decl(parserClass2.ts, 0, 0))
10 >this.logger : Symbol(LoggerAdapter.logger, Decl(parserClass2.ts, 1, 21))
11 >this : Symbol(LoggerAdapter, Decl(parserClass2.ts, 0, 0))
12 >logger : Symbol(LoggerAdapter.logger, Decl(parserClass2.ts, 1, 21))
DparserClass2.js2 export class LoggerAdapter implements ILogger { class
11 exports.LoggerAdapter = void 0;
12 var LoggerAdapter = /** @class */ (function () {
13 function LoggerAdapter(logger) { class in LoggerAdapter
17 return LoggerAdapter;
19 exports.LoggerAdapter = LoggerAdapter;
DscannerClass2.js2 export class LoggerAdapter implements ILogger { class
11 exports.LoggerAdapter = void 0;
12 var LoggerAdapter = /** @class */ (function () {
13 function LoggerAdapter(logger) { class in LoggerAdapter
17 return LoggerAdapter;
19 exports.LoggerAdapter = LoggerAdapter;
DparserRealSource1.js59 export class LoggerAdapter implements ILogger {
202 var LoggerAdapter = /** @class */ (function () { class
203 function LoggerAdapter(logger) { class in anonymousFunction6d8cea0b0100.LoggerAdapter
211 LoggerAdapter.prototype.information = function () { return this._information; }; class
212 LoggerAdapter.prototype.debug = function () { return this._debug; };
213 LoggerAdapter.prototype.warning = function () { return this._warning; };
214 LoggerAdapter.prototype.error = function () { return this._error; };
215 LoggerAdapter.prototype.fatal = function () { return this._fatal; };
216 LoggerAdapter.prototype.log = function (s) {
219 return LoggerAdapter;
[all …]
DscannerClass2.types2 export class LoggerAdapter implements ILogger {
3 >LoggerAdapter : LoggerAdapter
DparserClass2.types2 export class LoggerAdapter implements ILogger {
3 >LoggerAdapter : LoggerAdapter
DscannerClass2.errors.txt3 …annerClass2.ts(3,18): error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
7 export class LoggerAdapter implements ILogger {
15 !!! error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
DparserClass2.errors.txt3 …arserClass2.ts(3,18): error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
7 export class LoggerAdapter implements ILogger {
15 !!! error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
DparserRealSource1.types133 export class LoggerAdapter implements ILogger {
134 >LoggerAdapter : LoggerAdapter
DparserRealSource1.errors.txt64 export class LoggerAdapter implements ILogger {
/third_party/typescript/tests/cases/conformance/scanner/ecmascript5/
DscannerClass2.ts3 export class LoggerAdapter implements ILogger { class
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/
DparserClass2.ts3 export class LoggerAdapter implements ILogger { class
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource1.ts58 export class LoggerAdapter implements ILogger { class
/third_party/python/Doc/howto/
Dlogging-cookbook.rst578 with logging event information is to use the :class:`LoggerAdapter` class.
585 When you create an instance of :class:`LoggerAdapter`, you pass it a
588 :class:`LoggerAdapter`, it delegates the call to the underlying instance of
591 :class:`LoggerAdapter`::
601 The :meth:`~LoggerAdapter.process` method of :class:`LoggerAdapter` is where the
615 you just need to subclass :class:`LoggerAdapter` and override
616 :meth:`~LoggerAdapter.process` to do what you need. Here is a simple example::
618 class CustomAdapter(logging.LoggerAdapter):
637 You don't need to pass an actual dict to a :class:`LoggerAdapter` - you could
658 'user' as in the ``LoggerAdapter`` example above. In that case, the same format
[all …]
/third_party/python/Doc/library/
Dlogging.rst878 LoggerAdapter Objects
881 :class:`LoggerAdapter` instances are used to conveniently pass contextual
885 .. class:: LoggerAdapter(logger, extra)
887 Returns an instance of :class:`LoggerAdapter` initialized with an
898 In addition to the above, :class:`LoggerAdapter` supports the following
910 to :class:`LoggerAdapter`. These methods delegate to the underlying logger.
/third_party/python/Lib/logging/
D__init__.py1795 class LoggerAdapter(object): class
/third_party/python/Misc/NEWS.d/
D3.6.4rc1.rst513 The ``manager`` property on LoggerAdapter objects is now properly settable.
D3.6.3rc1.rst299 LoggerAdapter objects can now be nested.
D3.7.0a3.rst981 The ``manager`` property on LoggerAdapter objects is now properly settable.
D3.10.0a1.rst2169 The second argument (extra) of ``LoggerAdapter.__init__`` now defaults to
D3.7.0a1.rst1588 LoggerAdapter objects can now be nested.
/third_party/python/Lib/test/
Dtest_logging.py196 INF = logging.LoggerAdapter(logging.getLogger("INF"), {})
4838 self.adapter = logging.LoggerAdapter(logger=self.logger, extra=None)
4897 class Adapter(logging.LoggerAdapter):
/third_party/python/Doc/whatsnew/
D2.7.rst535 * The :class:`~logging.LoggerAdapter` class gained an
536 :meth:`~logging.LoggerAdapter.isEnabledFor` method that takes a

12