Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firebase-logging

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firebase-logging

Real-time logging for Firebase

  • 1.0.16
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

alt Firebase Logging Logo

Easier Logging for Firebase

Firebase Logging is a free open source tool that we built for the Firebase community. We are regular users of Firebase and this solves a real "logging" need for us. We hope it helps you too.

See our Firebase Logging Page for more information.

Why Firebase Logging

Firebase's CLI (command line interface) logging requires you to re-run the tool just to see new data. That becomes a lot of up 'arrow key' and 'enter' pressing.

Firebase Logging gives you mostly real-time logging by continually running the Firebase CLI logging command and printing to the console new entires. You can output the logs to the console and a file.

Log enhancements include:

  • Colored Logs: timestamp blue, function name green, warning yellow, and error red. Default.
  • Locally Formatted Timestamp: format from UTC timestamp to your local time. Use --ft parameter to format.

Things to Note

The default polling occurs every 2 seconds. You can set the frequency of polling with the -freq parameter from a minimum of 1500 milliseconds, which is the most Firebase will allow, to an infinite maximum. You might want to increase the frequency if you find the polling is taking too much system resources.

The default pull is 250 lines, so if you have more than 250 lines logs per the polling frequency, some logs will be missed. Increase the number of log lines pulled with the --n parameter to capture more logs (1-1000).

Installation

npm i -g firebase-logging

Requirements

  • firebase-tools globally installed.
  • A Firebase project id you want to see the logs of

Usage

Run

firebase-logging --project=[Firebase projectId]

Example

Start the logging to the console for project myFirerun, only for the sendReport function, save to the savelog.txt file, and format the time to local.

firebase-logging --project=myFirerun --func=sendReport --file=savelog.txt --ft

Parameters

Required
ParameterDescription
--project[projectId] of Firebase project
Optional
ParameterDescription
--hHelp info
--file[File Name] to write the logs
--colorOffTurn off coloring of logs
--func[Function Name] of specific function to view logs
--n[Number] of log lines to pull (1-1000)
--ftFormat timestamp to local date and time
--freq[Milliseconds] to poll for new logs

Keywords

FAQs

Package last updated on 12 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc