92feb76252
And also make a proposed split of how the loggers are handled.
Now logs look like
```
{
"type": "incomingRequest",
"service": "backstage",
"timestamp": "2020-04-30T14:29:04.002Z",
"message": "...",
"level": "info"
}
```
for requests, and then if the plugin logs something properly
```
{
"type": "plugin",
"service": "backstage",
"plugin": "inventory",
"timestamp": "2020-04-30T14:29:04.002Z",
"message": "...",
"level": "info"
}
```
Inventory Backend
WORK IN PROGRESS
This is the backend part of the default inventory plugin.
It responds to requests from the frontend part, and fulfills them by delegating to your existing inventory related services.
Links
- (Frontend part of the plugin)[https://github.com/spotify/backstage/tree/master/plugins/inventory]
- (The Backstage homepage)[https://backstage.io]