Skip to content

Commit 4ea6d24

Browse files
committed
log info comentado
1 parent ac906c6 commit 4ea6d24

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Wcadena/StringBladeCompiler/StringBladeCompiler.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class StringBladeCompiler extends BladeCompiler implements CompilerInterface
1313

1414
public function __construct($filesystem, $cache_path, $config, $app)
1515
{
16-
Log::info('asdy7nascascascasc');
16+
//Log::info('asdy7nascascascasc');
1717
// Get Current Blade Instance
1818
$blade = app('view')->getEngineResolver()->resolve('blade')->getCompiler();
1919

@@ -34,7 +34,7 @@ public function __construct($filesystem, $cache_path, $config, $app)
3434
*/
3535
public function compile($path = NULL)
3636
{
37-
Log::info('asdy7nascascascasc222222222222222');
37+
//Log::info('asdy7nascascascasc222222222222222');
3838
$contents = $this->compileString($path);
3939

4040
if (!is_null($this->cachePath)) {
@@ -50,7 +50,7 @@ public function compile($path = NULL)
5050
*/
5151
public function getCompiledPath($path)
5252
{
53-
Log::info('asdy7nascascascasc33333333333333');
53+
//Log::info('asdy7nascascascasc33333333333333');
5454
/*
5555
* A unique path for the given model instance must be generated
5656
* so the view has a place to cache. The following generates a
@@ -69,7 +69,7 @@ public function getCompiledPath($path)
6969
*/
7070
public function isExpired($path)
7171
{
72-
Log::info('asdy7nascascascascsasda22222222222222222');
72+
//Log::info('asdy7nascascascascsasda22222222222222222');
7373
if (!$this->config->get('string-blade-compiler.cache') OR !$this->config->get('string-blade-compiler.cache_time') OR !is_int($this->config->get('string-blade-compiler.cache_time'))) {
7474
return true;
7575
}

src/Wcadena/StringBladeCompiler/StringBladeCompilerServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class StringBladeCompilerServiceProvider extends ServiceProvider
2222
*/
2323
public function boot()
2424
{
25-
Log::info('Entroa aca3333333333333333333333333333333333!!!!!');
25+
//Log::info('Entroa aca3333333333333333333333333333333333!!!!!');
2626
$config_path = __DIR__ . '/../../../config/string-blade-compiler.php';
2727
$this->publishes([$config_path => config_path('string-blade-compiler.php')], 'config');
2828

@@ -37,7 +37,7 @@ public function boot()
3737
*/
3838
public function register()
3939
{
40-
Log::info('Entroa aca1111111111111111111!!!!!');
40+
//Log::info('Entroa aca1111111111111111111!!!!!');
4141
$config_path = __DIR__ . '/../../../config/string-blade-compiler.php';
4242
$this->mergeConfigFrom($config_path, 'string-blade-compiler');
4343

@@ -51,7 +51,7 @@ public function register()
5151
return $string_view;
5252
});
5353
$this->app->booting(function () {
54-
Log::info('Entroa aca!!!!!');
54+
//Log::info('Entroa aca!!!!!');
5555
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
5656
$loader->alias('StringView', 'Wcadena\StringBladeCompiler\Facades\StringView');
5757
});
@@ -64,7 +64,7 @@ public function register()
6464
*/
6565
public function provides()
6666
{
67-
Log::info('hahahahahahaha11111111111111111');
67+
//Log::info('hahahahahahaha11111111111111111');
6868
return array();
6969
}
7070
}

0 commit comments

Comments
 (0)