diff --git a/README.md b/README.md index 62236af..6b7ef1f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gowebframework +# Go Web Framework Petit framework web en go pour des petites applications avec chargement des templates et serveur intégré diff --git a/session.go b/session.go index 6051206..18a2b55 100644 --- a/session.go +++ b/session.go @@ -2,7 +2,7 @@ * @Author: Bartuccio Antoine * @Date: 2018-07-16 14:07:07 * @Last Modified by: klmp200 -* @Last Modified time: 2018-07-17 23:57:10 +* @Last Modified time: 2018-07-18 00:03:26 */ package gowebframework @@ -51,7 +51,6 @@ func clearExpiredSessionsCron() { lifetime := SESSION.maxLifetime SESSION.lock.Unlock() for { - log.Println("pute") SESSION.lock.Lock() SESSION.provider.SessionClearExpired(lifetime) SESSION.lock.Unlock()