Pelias is a geocoder powered completely by open data, available freely to everyone.
Local Installation · Cloud Webservice · Documentation · Community Chat
What is Pelias?
Pelias is a search engine for places worldwide, powered by open data. It turns addresses and place names into geographic coordinates, and turns geographic coordinates into places and addresses. With Pelias, you’re able to turn your users’ place searches into actionable geodata and transform your geodata into real places.
We think open data, open source, and open strategy win over proprietary solutions at any part of the stack and we want to ensure the services we offer are in line with that vision. We believe that an open geocoder improves over the long-term only if the community can incorporate truly representative local knowledge.
The centralized logger package for Pelias, which wraps winston with Pelias-specific transports and default configurations.
The logger will set its log levels to the logger.level
property in pelias-config
, which should be set to any of the
default winston options. logger.timestamp
and
logger.colorize
take boolean values (defaulting to true
) that indicate whether log lines should have a
timestamp/be colorized.
Retrieve a logger with a specific name or, if none is found, create a new one.
name
: the name to search for/assign to the loggerloggerOpts
: if a new logger has to be created, the options to pass towinston.Logger()
The winston package is exposed via this option, to provide access to any items needed in custom loggerOpts
passed to
get()
(like winston.transports.*
classes).
var peliasLogger = require( 'pelias-logger' );
var logger1 = peliasLogger.get( 'logger1' );
var logger2 = peliasLogger.get( 'logger2', {
transports: [
new peliasLogger.winston.transports.File( {
filename: 'output.txt',
timestamp: true
})
]
});
logger1.warn( 'hello' );