🪵 Logtail - logging core
New to Logtail? Here's a low-down on logging in JavaScript.
@logtail/core
This is an NPM package that provides core logging functionality.
It's used by the Node and browser logging packages.
You typically wouldn't require this package directly, unless you're building a custom logger.
The Base
class
The Base class provides core features that are extended by loggers.
For example - you could create a custom logger that implements its own sync method, for getting data over to Logtail.com
import { Base } from "@logtail/core";
import { ILogtailOptions, ILogtailLog } from "@logtail/types";
class CustomLogger extends Base {
public constructor(
sourceToken: string,
options?: Partial<ILogtailOptions>
) {
super(sourceToken, options);
this.setSync(async (logs: ILogtailLog[]) => {
return logs;
});
}
}
Logging
Logging to Logtail is simple - just call the .log()
function with a string message:
logtail.log("Hello Logtail!");
logtail.log("Once more, with context", {
httpRequest: {
"user-agent": {
browser: "Chrome",
},
},
});
There are four levels of logging, each corresponding to a function:
Function | Log level | Example |
---|
.debug() | Debug - logs to report/diagnose system events | Currently logged in session object, during development |
.info() | Info - data/events where no action is required; for information only | User successfully logged in |
.warn() | Warning - advisory messages that something probably needs fixing, but not serious enough to cause an error | SQL query ran slower than expected |
.error() | Error - something went wrong | Couldn't connect to database |
By default, .log()
logs at the 'info' level. You can use the above explicit log levels instead by calling the relevant function with your log message.
All log levels return a Promise that will resolve once the log has been synced with Logtail.com:
logtail.log("some log message").then((log) => {
});
Middleware
You can add your own middleware functions, which act as transforms on the ILogtailLog log object.
This is useful for augmenting the log prior to syncing with Logtail, or even pushing the log to another service.
Here's what a middleware function looks like:
import { ILogtailLog } from "@logtail/types";
async function addCurrentUser(log: ILogtailLog): Promise<ILogtailLog> {
return {
...log,
user: {
id: 1000,
name: "John",
},
};
}
Then just attach to the Logtail instance with .use
:
logtail.use(addCurrentUser);
You can add any number of pipeline functions to your logger instance, and they'll run in order.
Middleware functions run before the final sync to Logtail.com. Pipeline functions should return a Promise<ILogtailLog>
, making it possible to augment logs with asynchronous data from external sources.
Note: If an exception is thrown anywhere in the pipeline chain, the log won't be synced. Wrap an async try/catch
block around your call to .log|info|debug|warn|error()
or tack on a .catch()
to ensure your errors are handled.
Removing middleware
If you wish to remove middleware, pass in the original middleware function to .remove()
:
logtail.remove(addCurrentUser);
This will remove the middleware function from all future calls to .log|info|debug|warn|error()
.
To re-add middleware, pass it to .use()
LICENSE
ISC