From e2c5b569a9af575f7eb3c99672fb026628b88288 Mon Sep 17 00:00:00 2001
From: empathetic-alligator <willipovell@gmail.com>
Date: Sun, 14 Dec 2014 21:51:51 -0500
Subject: [PATCH 1/2] Added travis build status icon to README

---
 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 5d1923b..5bdb203 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
+[![Build Status](https://travis-ci.org/shazow/ssh-chat.svg?branch=master)](https://travis-ci.org/shazow/ssh-chat)
+
 # ssh-chat
 
 Custom SSH server written in Go. Instead of a shell, you get a chat prompt.

From dd65f7faf243256aedce22135279ec8c1df120fc Mon Sep 17 00:00:00 2001
From: empathetic-alligator <willipovell@gmail.com>
Date: Sun, 14 Dec 2014 22:16:56 -0500
Subject: [PATCH 2/2] Added note about make debug to README

---
 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index 5bdb203..cc4b53d 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,7 @@ See notes in the header of our Dockerfile for details on building your own image
 If you're developing on this repo, there is a handy Makefile that should set
 things up with `make run`.
 
+Additionally, `make debug` runs the server with an http `pprof` server. This allows you to open [http://localhost:6060/debug/pprof/]() and view profiling data. See [net/http/pprof](http://golang.org/pkg/net/http/pprof/) for more information about `pprof`.
 
 ## License