With console.log, it's not possible to see which line of code the log is from

When in localhost , I use console.log(“Message”) , and I see that it always shows raven.js like the Image uploaded. When I click there , It always shows inside raven.js code. I want to see exact line of Code where my console.log was written.

This is part of Raven’s breadcrumb instrumentation. You can disable it like so:

Raven.config('your-dsn', {
  autoBreadcrumbs: {
    console: false
  }
}).install();

Note that this will disable console breadcrumbs. Unfortunately there’s no way to automatically capture console breadcrumbs without having the effect of changing the location of the log capture in the browser console.

See: the Raven.js documentation Config page.