summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/publisher.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/publisher.c b/src/publisher.c
index 309cf6b..769ff27 100644
--- a/src/publisher.c
+++ b/src/publisher.c
@@ -40,6 +40,7 @@ void askforbreak(){
FILE * file;
file = fopen(__break_file, "r");
while(file){
+ printf("I am doing a break for %ds", BREAK_DURATION);
usleep(BREAK_DURATION * 1000);
fclose(file);
file = fopen(__break_file, "r");