ChromeLogger에 대한 리뷰
ChromeLogger 제작자: BurningMoth
Patrick Brosset 님의 리뷰
5점 만점에 5점
Patrick Brosset 님, 8년 전Works for me now. It was updated last week and it fixes the issue people have been talking about in the comments!
Thanks!
Thanks!
리뷰 28개
- 5점 만점에 5점AmericanIntelligenceMachines 님, 일 년 전
- 5점 만점에 5점Firefox 사용자 17447093 님, 4년 전
- 5점 만점에 5점Firefox 사용자 16987925 님, 5년 전
- 5점 만점에 4점Firefox 사용자 15307722 님, 6년 전
- 5점 만점에 5점Firefox 사용자 15064500 님, 7년 전
- 5점 만점에 5점Firefox 사용자 14666722 님, 7년 전
- 5점 만점에 5점Firefox 사용자 13079274 님, 8년 전
- 5점 만점에 5점Firefox 사용자 14035565 님, 8년 전
- 5점 만점에 5점Joe Rooster 님, 8년 전Works as expected and better than other add-ons that (try to) put out messages from ChromePHP. Thank you :-)
- 5점 만점에 5점Firefox 사용자 13483795 님, 8년 전Ok so the problems I reported earlier are fixed and logging is working as expected now. Thanks for a great bit of digital kit?
- 5점 만점에 4점Firefox 사용자 13518149 님, 8년 전
- Updated Review:
Issue's been resolved and logs my messages like a champ.
Previous Review:
Produces error: TypeError: window.console[method] is undefined
The reason appears to be that it assumes the console method will be sent in the response. This will be the case for the all logging types _except_ "log". According to the Chrome Logger technical specifications at https://craig.is/writing/chrome-logger/techspecs, if you want to log, you should send an empty string (to save on size). Therefore the add-on ought to use "log" if "method" is empty. I believe the following would be sufficient to fix it:
console[method || 'log']
I couldn't find a repository to log this issue at or submit a pull request, so I had to use the review section.