{"id":256480,"date":"2020-07-14T15:38:49","date_gmt":"2020-07-14T15:38:49","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=256480"},"modified":"2026-01-16T10:29:01","modified_gmt":"2026-01-16T10:29:01","slug":"quick-logging-in-custom-file-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/","title":{"rendered":"Quick Logging in Custom File in Magento 2"},"content":{"rendered":"\n<p>We need <strong>quick logging<\/strong> in Magento 2 to <strong>debug code instantly<\/strong> without setting up full logging infrastructure.<\/p>\n\n\n\n<p>It allows developers to <strong>track errors, variables, or execution flow<\/strong> while developing or troubleshooting modules.<\/p>\n\n\n\n<p>Quick logs are useful when you want <strong>immediate insights<\/strong> into code behavior, especially during module development, API calls, or cron jobs.<\/p>\n\n\n\n<p>Magento 2 provides <strong>three main ways<\/strong> to create logs, and developers commonly use all of them depending on the scenario.<\/p>\n\n\n<p>You can check the overview in the video below \u2014<\/p>\n<p><iframe title=\"How to Use Quick Logging in Custom Files in Magento 2 for Faster Debugging?\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/DaW5y6L5Z0M?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen loading=\"lazy\"><\/iframe><\/p>\n\n\n<h2 class=\"wp-block-heading\">1.  Log Using <code>Psr\\Log\\LoggerInterface<\/code><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What Is <code>LoggerInterface<\/code>?<\/h3>\n\n\n\n<p>Magento 2\u2019s core logger implements <strong><a href=\"https:\/\/www.php-fig.org\/psr\/psr-3\/\">PSR\u20113<\/a><\/strong>, making it easy to log messages like info or error.<br>You will see logged messages appear in <code>system.log<\/code> or <code>debug.log<\/code> depending on the log level.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Log Using <code>LoggerInterface<\/code><\/h3>\n\n\n\n<p>Inject the <strong>LoggerInterface<\/strong> into your class constructor for dependency injection.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">    public function __construct(\n        \\Psr\\Log\\LoggerInterface $logger\n    ) {\n        $this-&gt;logger = $logger;\n    }<\/pre>\n\n\n\n<p>Then call <code>$this-&gt;logger-&gt;info('text')<\/code> in any method to write to default Magento log files.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Log to a Custom File (Monolog Custom Module)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What Is Custom Log File Using Monolog?<\/h3>\n\n\n\n<p>Magento 2 lets you create a custom <strong>Monolog channel<\/strong> and handler to log messages to your own file.<br>This gives you a <strong>separate log<\/strong> like <code>var\/log\/customfile.log<\/code> instead of system\/debug log.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Steps to Create It<\/h3>\n\n\n\n<p><strong>Step 1. Add your handler and logger definition in <em>etc\/di.xml<\/em> to register the custom log channel.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n  &lt;type name=&quot;Webkul\\CustomModule\\Logger\\Logger&quot;&gt;\n    &lt;arguments&gt;\n      &lt;argument name=&quot;name&quot; xsi:type=&quot;string&quot;&gt;customfile&lt;\/argument&gt;\n      &lt;argument name=&quot;handlers&quot; xsi:type=&quot;array&quot;&gt;\n        &lt;item name=&quot;system&quot; xsi:type=&quot;object&quot;&gt;Webkul\\CustomModule\\Logger\\Handler&lt;\/item&gt;\n      &lt;\/argument&gt;\n    &lt;\/arguments&gt;\n  &lt;\/type&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>step 2. Create Handler.php<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\CustomModule\\Logger;\n\nclass Handler extends \\Magento\\Framework\\Logger\\Handler\\Base\n{\n    \/**\n     * @var string\n     *\/\n    protected $fileName = &#039;\/var\/log\/customfile.log&#039;;\n}<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>step 3. Create Logger.php<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\CustomModule\\Logger;\n\nclass Logger extends \\Monolog\\Logger\n{\n}<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Log Directly With <code>Zend_Log<\/code><\/h2>\n\n\n\n<p><strong>What Is Direct Logging With Zend_Log?<\/strong><\/p>\n\n\n\n<p>For quick debugging within code, you can use <strong>Zend_Log<\/strong> with a writer to stream to a custom file.<br>This approach writes directly without setting up a full custom logger class or DI configuration.<\/p>\n\n\n\n<p><strong>Example Code Snippet<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$writer = new \\Zend_Log_Writer_Stream(BP .&#039;\/var\/log\/customfile.log&#039;);\n$logger = new \\Zend_Log();\n$logger-&gt;addWriter($writer);\n$logger-&gt;info(&#039;hello log&#039;);<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Magento 2 offers multiple ways to create custom logs, making it easier to isolate and analyze module-level issues.<\/p>\n\n\n\n<p>Quick inline logging with <code>Zend_Log_Writer_Stream<\/code> adds even more flexibility when you need immediate insights during development.<\/p>\n\n\n\n<p>Looking to improve your store\u2019s speed and overall performance? Check out our <a href=\"https:\/\/webkul.com\/magento-speed-optimization-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 Speed &amp; Optimization services<\/a>.<\/p>\n\n\n\n<p>For expert guidance or custom feature development, you may <strong><a href=\"https:\/\/webkul.com\/hire-magento-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire our Magento 2 developers<\/a><\/strong> to support your project.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We need quick logging in Magento 2 to debug code instantly without setting up full logging infrastructure. It allows developers to track errors, variables, or execution flow while developing or troubleshooting modules. Quick logs are useful when you want immediate insights into code behavior, especially during module development, API calls, or cron jobs. Magento 2 <a href=\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":201,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[72],"class_list":["post-256480","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-magento-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Quick Logging in Custom File in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Quick Logging in Custom File in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-14T15:38:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-16T10:29:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sanjay Chouhan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sanjay Chouhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\"},\"author\":{\"name\":\"Sanjay Chouhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462\"},\"headline\":\"Quick Logging in Custom File in Magento 2\",\"datePublished\":\"2020-07-14T15:38:49+00:00\",\"dateModified\":\"2026-01-16T10:29:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\"},\"wordCount\":347,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"magento development\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\",\"name\":\"Quick Logging in Custom File in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2020-07-14T15:38:49+00:00\",\"dateModified\":\"2026-01-16T10:29:01+00:00\",\"description\":\"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quick Logging in Custom File in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462\",\"name\":\"Sanjay Chouhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Chouhan\"},\"sameAs\":[\"https:\/\/www.instagram.com\/sanjaychouhansc\/\",\"https:\/\/in.linkedin.com\/in\/scchouhansanjay\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Quick Logging in Custom File in Magento 2 - Webkul Blog","description":"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Quick Logging in Custom File in Magento 2 - Webkul Blog","og_description":"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.","og_url":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2020-07-14T15:38:49+00:00","article_modified_time":"2026-01-16T10:29:01+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Sanjay Chouhan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Chouhan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/"},"author":{"name":"Sanjay Chouhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462"},"headline":"Quick Logging in Custom File in Magento 2","datePublished":"2020-07-14T15:38:49+00:00","dateModified":"2026-01-16T10:29:01+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/"},"wordCount":347,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["magento development"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/","name":"Quick Logging in Custom File in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2020-07-14T15:38:49+00:00","dateModified":"2026-01-16T10:29:01+00:00","description":"Learn how to quick logging into a custom log file in Magento 2 for faster debugging without complex setup.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/quick-logging-in-custom-file-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Quick Logging in Custom File in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462","name":"Sanjay Chouhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Chouhan"},"sameAs":["https:\/\/www.instagram.com\/sanjaychouhansc\/","https:\/\/in.linkedin.com\/in\/scchouhansanjay"],"url":"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/256480","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/201"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=256480"}],"version-history":[{"count":22,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/256480\/revisions"}],"predecessor-version":[{"id":522323,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/256480\/revisions\/522323"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=256480"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=256480"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=256480"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}