<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Georgi Hristov</title>
    <description>The latest articles on DEV Community by Georgi Hristov (@georgi_hristov).</description>
    <link>https://dev.to/georgi_hristov</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3903502%2Fff102961-b107-4fc2-9c91-7740b06b4fe4.png</url>
      <title>DEV Community: Georgi Hristov</title>
      <link>https://dev.to/georgi_hristov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/georgi_hristov"/>
    <language>en</language>
    <item>
      <title>Debugging API is still painful</title>
      <dc:creator>Georgi Hristov</dc:creator>
      <pubDate>Wed, 29 Apr 2026 08:53:57 +0000</pubDate>
      <link>https://dev.to/georgi_hristov/debugging-api-is-still-painful-of3</link>
      <guid>https://dev.to/georgi_hristov/debugging-api-is-still-painful-of3</guid>
      <description>&lt;p&gt;&lt;em&gt;Note: The image above is AI-generated to illustrate the idea.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Debugging APIs across environments is messy.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Logs are scattered&lt;/li&gt;
&lt;li&gt;Responses differ between dev/staging&lt;/li&gt;
&lt;li&gt;Errors like 401 appear with no clear reason&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What I wanted&lt;/strong&gt;&lt;br&gt;
A simple way to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;See all requests in one place&lt;/li&gt;
&lt;li&gt;Open a request and inspect it&lt;/li&gt;
&lt;li&gt;Quickly understand failures&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Also useful&lt;/strong&gt;&lt;br&gt;
Comparing the same request between environments.&lt;br&gt;
You immediately see what’s different.&lt;/p&gt;

&lt;p&gt;Built this as a small ASP.NET Core tool for myself.&lt;/p&gt;

&lt;p&gt;Curious how others handle this problem.&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>aspnetcore</category>
      <category>webdev</category>
      <category>backend</category>
    </item>
    <item>
      <title>Debugging HTTP Requests in ASP.NET Core Across Environments</title>
      <dc:creator>Georgi Hristov</dc:creator>
      <pubDate>Wed, 29 Apr 2026 04:47:46 +0000</pubDate>
      <link>https://dev.to/georgi_hristov/debugging-http-requests-in-aspnet-core-across-environments-4nb7</link>
      <guid>https://dev.to/georgi_hristov/debugging-http-requests-in-aspnet-core-across-environments-4nb7</guid>
      <description>&lt;p&gt;When the same HTTP request works in dev but fails in production, debugging gets messy fast.&lt;/p&gt;

&lt;p&gt;Example: a request returns 200 in dev but 400 in prod because of a missing header or slightly different payload—and it’s not obvious why.&lt;/p&gt;

&lt;p&gt;Most of the time, this means jumping between logs, Postman, and custom middleware, trying to spot the difference.&lt;/p&gt;

&lt;p&gt;To simplify this, I started working on a lightweight way to capture and inspect HTTP requests and responses directly inside the app (headers, body, timing).&lt;/p&gt;

&lt;p&gt;The idea is simple: capture everything in one place and compare requests across environments to quickly see what changed.&lt;/p&gt;

&lt;p&gt;It’s still early stage, and I’m exploring better comparison and visualization.&lt;/p&gt;

&lt;p&gt;How do you debug these cases today?&lt;/p&gt;

&lt;p&gt;If you want to check it out:&lt;br&gt;
GitHub: &lt;a href="https://github.com/georgidhristov/DebugProbe.AspNetCore" rel="noopener noreferrer"&gt;https://github.com/georgidhristov/DebugProbe.AspNetCore&lt;/a&gt;&lt;br&gt;
NuGet: &lt;a href="https://www.nuget.org/packages/DebugProbe.AspNetCore" rel="noopener noreferrer"&gt;https://www.nuget.org/packages/DebugProbe.AspNetCore&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>aspnet</category>
      <category>api</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
